summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Favatella <luca.favatella@erlang-solutions.com>2018-03-16 21:26:53 +0000
committerLuca Favatella <luca.favatella@erlang-solutions.com>2018-03-23 17:00:42 +0000
commit4868c38d1653ee9389ec024214509661818baf2a (patch)
treedbc90a7dce3d8edb64ab7cc30199a6055d95f48c
parent2591eddc8db45c89e01ceefa009537aaf660ac82 (diff)
downloaderlang-4868c38d1653ee9389ec024214509661818baf2a.tar.gz
inets: Enable stronger Dialyzer checks in httpc_handler
-rw-r--r--lib/inets/src/http_client/httpc_handler.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/inets/src/http_client/httpc_handler.erl b/lib/inets/src/http_client/httpc_handler.erl
index 327aec4baa..8311d1ed76 100644
--- a/lib/inets/src/http_client/httpc_handler.erl
+++ b/lib/inets/src/http_client/httpc_handler.erl
@@ -58,7 +58,7 @@
mfa, % {Module, Function, Args}
pipeline = queue:new() :: queue:queue(),
keep_alive = queue:new() :: queue:queue(),
- status, % undefined | new | pipeline | keep_alive | close | {ssl_tunnel, Request}
+ status :: undefined | new | pipeline | keep_alive | close | {ssl_tunnel, request()},
canceled = [], % [RequestId]
max_header_size = nolimit :: nolimit | integer(),
max_body_size = nolimit :: nolimit | integer(),