Skip to content

Commit

Permalink
dummy PR to trigger integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
GaoleMeng committed Nov 28, 2023
1 parent cda407d commit 12f9444
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class ConnectionWorkerPoolTest {
private static MockServiceHelper serviceHelper;
private BigQueryWriteSettings clientSettings;

private static final String TEST_TRACE_ID = "home:job1";
private static final String TEST_TRACE_ID = "DATAFLOW:job_id";
private static final String TEST_STREAM_1 = "projects/p1/datasets/d1/tables/t1/streams/_default";
private static final String TEST_STREAM_2 = "projects/p1/datasets/d1/tables/t2/streams/_default";

Expand Down Expand Up @@ -417,6 +417,9 @@ public void testCloseExternalClient()
assertThat(response.getAppendResult().getOffset().getValue()).isEqualTo(i);
}
assertThat(testBigQueryWrite.getAppendRequests().size()).isEqualTo(appendCount * 2);
for (int i = 0; i < streamWriterList.size(); i++) {
streamWriterList.get(i).close();
}
}

private AppendRowsResponse createAppendResponse(long offset) {
Expand Down

0 comments on commit 12f9444

Please sign in to comment.