Skip to content

Commit 7f29a10

Browse files
committed
increase metrics timeout
1 parent cfbb2a2 commit 7f29a10

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

integration-test-remote/src/test/java/io/cdap/cdap/app/etl/gcp/GoogleCloudSpannerTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -370,8 +370,8 @@ public void testReadAndStoreWithNoSourceSchema() throws Exception {
370370
private void checkMetrics(String applicationName, int expectedCount) throws Exception {
371371
Map<String, String> tags = ImmutableMap.of(Constants.Metrics.Tag.NAMESPACE, TEST_NAMESPACE.getNamespace(),
372372
Constants.Metrics.Tag.APP, applicationName);
373-
checkMetric(tags, "user." + SPANNER_SOURCE_STAGE_NAME + ".records.out", expectedCount, 10);
374-
checkMetric(tags, "user." + SPANNER_SINK_STAGE_NAME + ".records.in", expectedCount, 10);
373+
checkMetric(tags, "user." + SPANNER_SOURCE_STAGE_NAME + ".records.out", expectedCount, 60);
374+
checkMetric(tags, "user." + SPANNER_SINK_STAGE_NAME + ".records.in", expectedCount, 60);
375375
}
376376

377377
private void verifySinkData(String tableName) {

0 commit comments

Comments
 (0)