aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2015-09-10 12:27:52 +0200
committerIngela Anderton Andin <[email protected]>2015-09-10 12:27:52 +0200
commitf5ffccdae5a141ec492e1f4016e3623bb673b25f (patch)
tree08e524a09e1238d26092e9207681bf949c2ea1f9
parentb2ca2db15c8d34e384813dd140063d97d55de795 (diff)
parente62a1735cb593fe1dac8b93b7573a0f64c6cca74 (diff)
downloadotp-f5ffccdae5a141ec492e1f4016e3623bb673b25f.tar.gz
otp-f5ffccdae5a141ec492e1f4016e3623bb673b25f.tar.bz2
otp-f5ffccdae5a141ec492e1f4016e3623bb673b25f.zip
Merge branch 'maint'
-rw-r--r--lib/inets/src/http_client/httpc_response.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/inets/src/http_client/httpc_response.erl b/lib/inets/src/http_client/httpc_response.erl
index 10af1949a4..4bf2ba2b9b 100644
--- a/lib/inets/src/http_client/httpc_response.erl
+++ b/lib/inets/src/http_client/httpc_response.erl
@@ -328,7 +328,7 @@ status_service_unavailable(Response = {_, Headers, _}, Request) ->
undefined ->
status_server_error_50x(Response, Request);
Time when (length(Time) < 3) -> % Wait only 99 s or less
- NewTime = list_to_integer(Time) * 100, % time in ms
+ NewTime = list_to_integer(Time) * 1000, % time in ms
{_, Data} = format_response(Response),
{retry, {NewTime, Request}, Data};
_ ->