Skip to content

Commit

Permalink
Minor fix to KeyVersionFetcherCLI
Browse files Browse the repository at this point in the history
  • Loading branch information
jayjwylie committed Jun 20, 2013
1 parent 0ef8faf commit ec9cd1e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/java/voldemort/utils/KeyVersionFetcherCLI.java
Expand Up @@ -95,11 +95,11 @@ public KeyVersionFetcherCLI(String url,
}

Properties clientProps = new Properties();
clientProps.put("connection_timeout_ms", 2500);
clientProps.put("max_connections", keyParallelism);
clientProps.put("routing_timeout_ms", 10000);
clientProps.put("socket_timeout_ms", 10000);
clientProps.put("failuredetector_threshold", 10);
clientProps.put("connection_timeout_ms", "2500");
clientProps.put("max_connections", Integer.toString(keyParallelism));
clientProps.put("routing_timeout_ms", "10000");
clientProps.put("socket_timeout_ms", "10000");
clientProps.put("failuredetector_threshold", "10");

this.adminClient = new AdminClient(url,
new AdminClientConfig(),
Expand Down

0 comments on commit ec9cd1e

Please sign in to comment.