Skip to content

Commit

Permalink
Prevent flaky Splunk test from failing the CI test run.
Browse files Browse the repository at this point in the history
  • Loading branch information
jnturton committed Nov 2, 2023
1 parent b4753d1 commit 07f9588
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ public void testSplunkQueryWithUserTranslation() throws Exception {
.property(DrillProperties.PASSWORD, TEST_USER_1_PASSWORD)
.build();

String sql = "SELECT acceleration_id, action, add_offset, add_timestamp FROM ut_splunk._audit LIMIT 2";
String sql = "SELECT acceleration_id, action, add_offset, add_timestamp FROM ut_splunk._audit LIMIT 1";
RowSet results = client.queryBuilder().sql(sql).rowSet();
assertEquals(2, results.rowCount());
assertEquals(1, results.rowCount());
results.clear();
}

Expand Down

0 comments on commit 07f9588

Please sign in to comment.