Closed
Changes from 1 commit
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Failed to load files.
PrevPrevious commit
chore: fix style
  • Loading branch information
@mayurkale22
mayurkale22 committedSep 30, 2021
commit c5b74c842094b37cb2461a5051666c4d2d18fb23
Original file line numberDiff line numberDiff line change
Expand Up@@ -121,7 +121,9 @@ public void testSetRequestTag() throws Exception {
.isEqualTo("SELECT SingerId, AlbumId, AlbumTitle FROM Albums");
queryStatsFound = true;
}
if (queryStatsFound) break;
if (queryStatsFound) {
break;
}
Thread.sleep(5000);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could we reduce the sleep time here?

}
}
Expand DownExpand Up@@ -152,7 +154,9 @@ public void testSetTransactionTag() throws Exception {
assertThat(resultSet.getStringList(0)).contains("Venues.VenueName");
txnStatsFound = true;
}
if (txnStatsFound) break;
if (txnStatsFound) {
break;
}
Thread.sleep(5000);
}
}
Expand Down