Skip to content

Commit 33b8cbf

Browse files
committed
1
1 parent 1429983 commit 33b8cbf

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

integration-tests/src/test/java/com/datastax/oss/driver/core/metadata/TabletMapSchemaChangesIT.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,11 @@ public void setup() {
105105
SESSION_RULE.session().execute(DROP_KEYSPACE);
106106
SESSION_RULE.session().execute(CREATE_KEYSPACE_QUERY);
107107
SESSION_RULE.session().execute(CREATE_TABLE_QUERY);
108+
try {
109+
Thread.sleep(100);
110+
} catch (InterruptedException e) {
111+
Thread.currentThread().interrupt();
112+
}
108113
SESSION_RULE.session().execute(String.format(INSERT_QUERY_TEMPLATE, "1", "2"));
109114
SESSION_RULE.session().execute(String.format(INSERT_QUERY_TEMPLATE, "3", "4"));
110115
PreparedStatement ps = SESSION_RULE.session().prepare(SELECT_QUERY_TEMPLATE);

0 commit comments

Comments
 (0)