The Wayback Machine - https://web.archive.org/web/20230226010300/https://github.com/ray-project/ray/commit/6f97a8301e8b32d78fbf3ce73fdaf068fa87e7ba
Skip to content
Permalink
Browse files
Revert "Revert "[core] Increase the threshold for pubsub integration …
…test"" (#32177)

* Revert "Revert "[core] Increase the threshold for pubsub integration test (#32145)" (#32165)"

This reverts commit 83e1a2a.

Signed-off-by: Yi Cheng <74173148+iycheng@users.noreply.github.com>
  • Loading branch information
iycheng committed Feb 3, 2023
1 parent b31343a commit 6f97a83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
@@ -1711,7 +1711,7 @@ cc_test(

cc_test(
name = "pubsub_integration_test",
timeout = "short",
size = "small",
srcs = ["src/ray/pubsub/test/integration_test.cc"],
copts = COPTS,
tags = ["team:core"],
@@ -295,7 +295,7 @@ TEST_F(IntegrationTest, SubscribersToOneIDAndAllIDs) {
// logic below.
int wait_count = 0;
while (!(subscriber_1->CheckNoLeaks() && subscriber_2->CheckNoLeaks())) {
ASSERT_LT(wait_count, 15) << "Subscribers still have inflight operations after 15s";
ASSERT_LT(wait_count, 60) << "Subscribers still have inflight operations after 60s";
++wait_count;
absl::SleepFor(absl::Seconds(1));
}

0 comments on commit 6f97a83

Please sign in to comment.