Skip to content

Commit

Permalink
Fix waiting for the task results during columnar scale out.
Browse files Browse the repository at this point in the history
Change-Id: I3bcad1c3e6a1e4e1f4f31c5a0684fd72b9ae5f03
Reviewed-on: https://review.couchbase.org/c/TAF/+/223644
Reviewed-by: Thuan Nguyen <[email protected]>
Tested-by: Ritesh Agarwal <[email protected]>
  • Loading branch information
ritalrw committed Feb 19, 2025
1 parent 988d656 commit a652379
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pytests/aGoodDoctor/goldfish/GoldfishVolume.py
Original file line number Diff line number Diff line change
Expand Up @@ -351,10 +351,10 @@ def test_rebalance(self):
self.task_manager.add_new_task(_task)
tasks.append(_task)
# self.wait_for_rebalances(tasks)
for task in tasks:
self.task_manager.get_task_result(task)
self.assertTrue(task.result, "Scaling OUT columnar failed!")
self.sleep(60)
for task in tasks:
self.task_manager.get_task_result(task)
self.assertTrue(task.result, "Scaling OUT columnar failed!")
self.sleep(60)
for th in self.ingestion_ths:
th.join()

Expand Down

0 comments on commit a652379

Please sign in to comment.