Skip to content

Commit

Permalink
Increased timeouts for state tests. apache#6200 apache#6198
Browse files Browse the repository at this point in the history
  • Loading branch information
Devin Bost committed Feb 3, 2020
1 parent 3f6e050 commit b7bc2a5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public void testSourceState() throws Exception {
} catch (PulsarAdminException e) {
return false;
}
}, 10, 200);
}, 20, 400);

SourceStatus status = admin.sources().getSourceStatus("public", "default", sourceName);
assertEquals(status.getInstances().size(), 1);
Expand Down Expand Up @@ -173,7 +173,7 @@ public void testSinkState() throws Exception {
} catch (PulsarAdminException e) {
return false;
}
}, 10, 200);
}, 20, 400);

SinkStatus status = admin.sinks().getSinkStatus("public", "default", sinkName);
assertEquals(status.getInstances().size(), 1);
Expand Down

0 comments on commit b7bc2a5

Please sign in to comment.