diff options
author | Luca Favatella <[email protected]> | 2018-03-16 21:26:53 +0000 |
---|---|---|
committer | Luca Favatella <[email protected]> | 2018-03-23 17:00:42 +0000 |
commit | 4868c38d1653ee9389ec024214509661818baf2a (patch) | |
tree | dbc90a7dce3d8edb64ab7cc30199a6055d95f48c /lib/inets/src | |
parent | 2591eddc8db45c89e01ceefa009537aaf660ac82 (diff) | |
download | otp-4868c38d1653ee9389ec024214509661818baf2a.tar.gz otp-4868c38d1653ee9389ec024214509661818baf2a.tar.bz2 otp-4868c38d1653ee9389ec024214509661818baf2a.zip |
inets: Enable stronger Dialyzer checks in httpc_handler
Diffstat (limited to 'lib/inets/src')
-rw-r--r-- | lib/inets/src/http_client/httpc_handler.erl | 2 |
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(), |