Skip to content

Commit

Permalink
[Core] Fix flaky reference counting ray-project#40783
Browse files Browse the repository at this point in the history
Co-authored-by: SangBin Cho <[email protected]>
  • Loading branch information
rkooo567 and SangBin Cho authored Oct 30, 2023
1 parent 728766b commit f0fe37e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion python/ray/tests/test_reference_counting.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@ def _fill_object_store_and_get(obj, succeed=True, object_MiB=20, num_objects=5):
)
else:
wait_for_condition(
lambda: not ray._private.worker.global_worker.core_worker.object_exists(obj)
lambda: not ray._private.worker.global_worker.core_worker.object_exists(
obj
),
timeout=30,
)


Expand Down

0 comments on commit f0fe37e

Please sign in to comment.