fix:config default value

This commit is contained in:
tanyawen
2019-12-29 09:41:25 +08:00
parent 94d4fab52a
commit 82105c4483
4 changed files with 5 additions and 19 deletions

View File

@@ -209,7 +209,7 @@ public class ClientGlobal {
g_connection_pool_max_idle_time = Integer.parseInt(poolMaxIdleTime) * 1000;
}
if (poolMaxWaitTimeInMS != null && poolMaxWaitTimeInMS.trim().length() != 0) {
g_connection_pool_max_wait_time_in_ms = Integer.parseInt(poolMaxWaitTimeInMS) * 1000;
g_connection_pool_max_wait_time_in_ms = Integer.parseInt(poolMaxWaitTimeInMS);
}
}