Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,9 @@ enum JDBCType {
POSTGRES
}

// TODO: Decrease timeout. Currently need to wait for long to make sure results are propagated.
@Rule public Timeout timeout = new Timeout(40, TimeUnit.MINUTES);
// TODO(https://github.com/GoogleCloudPlatform/DataflowTemplates/issues/2459): Decrease timeout.
// Currently need to wait for long to make sure results are propagated.
@Rule public Timeout timeout = new Timeout(60, TimeUnit.MINUTES);
Comment thread
Abacn marked this conversation as resolved.
private static final int NUM_EVENTS = 10;

private static final String ROW_ID = "ROW_ID";
Expand Down Expand Up @@ -200,6 +201,8 @@ public void testDataStreamOracleToBigQueryJson() throws IOException {
}

@Test
@Ignore("https://github.com/GoogleCloudPlatform/DataflowTemplates/issues/2459") // elevated test
// timeout
public void testDataStreamPostgresToBigQuery() throws IOException {
simpleJdbcToBigQueryTest(
JDBCType.POSTGRES,
Expand Down
Loading