From 031d48f0b3657c6d5ee1bd235c2574700f270706 Mon Sep 17 00:00:00 2001 From: zdevito Date: Thu, 30 Oct 2025 09:46:25 -0700 Subject: [PATCH] Remove workaround, and hope... Differential Revision: [D85870820](https://our.internmc.facebook.com/intern/diff/D85870820/) **NOTE FOR REVIEWERS**: This PR has internal Meta-specific changes or comments, please review them on [Phabricator](https://our.internmc.facebook.com/intern/diff/D85870820/)! [ghstack-poisoned] --- python/tests/test_python_actors.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/python/tests/test_python_actors.py b/python/tests/test_python_actors.py index ac209ad5f..6da3e7230 100644 --- a/python/tests/test_python_actors.py +++ b/python/tests/test_python_actors.py @@ -1412,11 +1412,6 @@ def test_mesh_len(): proc_mesh = fake_in_process_host().spawn_procs(per_host={"gpus": 12}) s = proc_mesh.spawn("sleep_actor", SleepActor) assert 12 == len(s) - # FIXME: Actually figure out what's going on here. - # Call an endpoint on the actor before the test - # exits. Otherwise we might get a fatal PyGILState_Release - # error. - s.sleep.call(1).get() class UndeliverableMessageReceiver(Actor):