Skip to content

Commit e8906c4

Browse files
authored
[data] Remove frivolous shutdown calls causing test error (#52557)
Closes #52545. Signed-off-by: Matthew Owen <mowen@anyscale.com>
1 parent 8ca0bcb commit e8906c4

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

python/ray/data/tests/test_streaming_executor.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -766,9 +766,6 @@ def test_create_topology_metadata():
766766
assert len(map_op2.input_dependencies) == 1
767767
assert map_op2.input_dependencies[0] == map_op1.id
768768

769-
# Cleanup
770-
executor.shutdown()
771-
772769

773770
def test_create_topology_metadata_with_sub_stages():
774771
"""Test that _dump_dag_structure correctly handles sub-stages."""
@@ -817,9 +814,6 @@ def test_create_topology_metadata_with_sub_stages():
817814
assert sub_stage2.name == "SubStage2"
818815
assert sub_stage2.id.endswith("_sub_1")
819816

820-
# Cleanup
821-
executor.shutdown()
822-
823817

824818
if __name__ == "__main__":
825819
import sys

0 commit comments

Comments
 (0)