diff options
author | Loïc Hoguin <[email protected]> | 2012-04-30 22:24:52 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2012-04-30 22:24:52 +0200 |
commit | 48a2b177f587c742c30428e4319075fdc12157b7 (patch) | |
tree | 8e2b4e48361681cad25042ba85a22187ec452154 /test/http_handler_long_polling.erl | |
parent | bc2d53d2a5e865ce36a0419c4d4698b30359415b (diff) | |
parent | ee8c50c5ab97dcaebc8932d093741fdb496e00f7 (diff) | |
download | cowboy-48a2b177f587c742c30428e4319075fdc12157b7.tar.gz cowboy-48a2b177f587c742c30428e4319075fdc12157b7.tar.bz2 cowboy-48a2b177f587c742c30428e4319075fdc12157b7.zip |
Merge branch 'cowboy-client'
Diffstat (limited to 'test/http_handler_long_polling.erl')
-rw-r--r-- | test/http_handler_long_polling.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/http_handler_long_polling.erl b/test/http_handler_long_polling.erl index e838619..8d08265 100644 --- a/test/http_handler_long_polling.erl +++ b/test/http_handler_long_polling.erl @@ -6,7 +6,7 @@ init({_Transport, http}, Req, _Opts) -> erlang:send_after(500, self(), timeout), - {loop, Req, 9, 5000, hibernate}. + {loop, Req, 5, 5000, hibernate}. handle(_Req, _State) -> exit(badarg). |