ソースを参照

Increase timeout in pipelining test (#174)

In CouchDB's CI the small_pipeline test intermittently fails with
something like:

```
in function ibrowse_tests:'-small_pipeline/0-fun-5-'/1 (test/ibrowse_tests.erl, line 150)
  {line,150},
  {expression,"Counts"},
  {expected,"\n\n\n\n\n\n\n\n\n\n"},
  {value,"\n\n\n\n\n\n\n\n\t\n"}]}
```

Increasing the timeout a bit seems to help in local tests.
pull/166/head
Nick Vatamaniuc 3年前
committed by GitHub
コミット
d775155a13
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      test/ibrowse_tests.erl

+ 1
- 1
test/ibrowse_tests.erl ファイルの表示

@ -15,7 +15,7 @@
-define(BASE_URL, "http://localhost:" ++ integer_to_list(?SERVER_PORT)).
-define(SHORT_TIMEOUT_MS, 5000).
-define(LONG_TIMEOUT_MS, 30000).
-define(PAUSE_FOR_CONNECTIONS_MS, 2000).
-define(PAUSE_FOR_CONNECTIONS_MS, 4000).
%%-compile(export_all).

読み込み中…
キャンセル
保存