Skip to content
Snippets Groups Projects
Commit 23125250 authored by Connor McCoy's avatar Connor McCoy
Browse files

Merge pull request #540 from jdcryans/master

[kudu] Bump the default admin timeout
parents e21b87f9 b3fca37a
No related branches found
No related tags found
No related merge requests found
......@@ -134,7 +134,8 @@ public class KuduYCSBClient extends com.yahoo.ycsb.DB {
client = new KuduClient.KuduClientBuilder(masterAddresses)
.defaultSocketReadTimeoutMs(DEFAULT_SLEEP)
.defaultOperationTimeoutMs(DEFAULT_SLEEP).build();
.defaultOperationTimeoutMs(DEFAULT_SLEEP)
.defaultAdminOperationTimeoutMs(DEFAULT_SLEEP).build();
if (debug) {
System.out.println("Connecting to the masters at " + masterAddresses);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment