Skip to content

Commit b91b4b0

Browse files
committed
Fix timeout in README.md quickstart example
1 parent 5f5eb6a commit b91b4b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ public class Quickstart {
299299
.setTableLimits(new TableLimits(10, 10, 10));
300300
/* this call will succeed or throw an exception */
301301
handle.doTableRequest(tableRequest,
302-
60000, /* wait up to 60 sec */
302+
20000, /* wait up to 20 sec */
303303
1000); /* poll once per second */
304304
305305
System.out.println("Created table " + tableName + " ...");
@@ -338,7 +338,7 @@ public class Quickstart {
338338
.setStatement("drop table if exists " + tableName);
339339
340340
handle.doTableRequest(tableRequest,
341-
60000,
341+
20000,
342342
1000);
343343
System.out.println("Dropped table " + tableName + ", done...");
344344
} finally {

0 commit comments

Comments
 (0)