We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f5eb6a commit b91b4b0Copy full SHA for b91b4b0
README.md
@@ -299,7 +299,7 @@ public class Quickstart {
299
.setTableLimits(new TableLimits(10, 10, 10));
300
/* this call will succeed or throw an exception */
301
handle.doTableRequest(tableRequest,
302
- 60000, /* wait up to 60 sec */
+ 20000, /* wait up to 20 sec */
303
1000); /* poll once per second */
304
305
System.out.println("Created table " + tableName + " ...");
@@ -338,7 +338,7 @@ public class Quickstart {
338
.setStatement("drop table if exists " + tableName);
339
340
341
- 60000,
+ 20000,
342
1000);
343
System.out.println("Dropped table " + tableName + ", done...");
344
} finally {
0 commit comments