Ver a proveniência

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 há 3 anos
committed by GitHub
ascendente
cometimento
d775155a13
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados ID da chave GPG: 4AEE18F83AFDEB23
1 ficheiros alterados com 1 adições e 1 eliminações
  1. +1
    -1
      test/ibrowse_tests.erl

+ 1
- 1
test/ibrowse_tests.erl Ver ficheiro

@ -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).

Carregando…
Cancelar
Guardar