Skip to content

Commit

Permalink
remove the use of NIMBUS_TASK_TIMEOUT_SECS from NimbusClient
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanmarz committed Mar 11, 2013
1 parent 61f08d6 commit 9956175
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/jvm/backtype/storm/utils/NimbusClient.java
Expand Up @@ -16,8 +16,7 @@ public static NimbusClient getConfiguredClient(Map conf) {
try {
String nimbusHost = (String) conf.get(Config.NIMBUS_HOST);
int nimbusPort = Utils.getInt(conf.get(Config.NIMBUS_THRIFT_PORT));
Integer timeout = Utils.getInt(conf.get(Config.NIMBUS_TASK_TIMEOUT_SECS));
return new NimbusClient(conf, nimbusHost, nimbusPort, timeout);
return new NimbusClient(conf, nimbusHost, nimbusPort);
} catch (TTransportException ex) {
throw new RuntimeException(ex);
}
Expand Down

0 comments on commit 9956175

Please sign in to comment.