Skip to content

Commit

Permalink
Feat: Change InfluxDbConfig default values
Browse files Browse the repository at this point in the history
  • Loading branch information
LinShunKang committed Aug 30, 2020
1 parent a5cbb5e commit 7ccfd2e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ public static InfluxDbConfig loadInfluxDbConfig() {
config.database(getStr(DATABASE));
config.username(getStr(USERNAME));
config.password(getStr(PASSWORD));
config.connectTimeout(getInt(CONN_TIMEOUT, 1000));
config.readTimeout(getInt(READ_TIMEOUT, 3000));
config.connectTimeout(getInt(CONN_TIMEOUT, 3000));
config.readTimeout(getInt(READ_TIMEOUT, 5000));
return config;
}
}

0 comments on commit 7ccfd2e

Please sign in to comment.