소스 검색

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
No known key found for this signature in database 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).

불러오는 중...
취소
저장