Skip to content

Commit

Permalink
Change key from connection_timeout to connection_timeout_ms preferences
Browse files Browse the repository at this point in the history
  • Loading branch information
Mattia Bertorello committed Jul 3, 2019
1 parent a7d395f commit 5dba31b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class HttpConnectionManager {
try {
connectTimeoutFromConfig =
Integer.parseInt(
PreferencesData.get("http.connection_timeout", "5000"));
PreferencesData.get("http.connection_timeout_ms", "5000"));
} catch (NumberFormatException e) {
log.warn(
"Cannot parse the http.connection_timeout configuration switch to default {} milliseconds", connectTimeoutFromConfig, e.getCause());
Expand Down

0 comments on commit 5dba31b

Please sign in to comment.