|
@@ -5,7 +5,7 @@ from contextlib import suppress
|
|
|
import psutil
|
|
|
import pytest
|
|
|
|
|
|
-from hivemind.utils import get_logger
|
|
|
+from hivemind.utils.logging import get_logger
|
|
|
from hivemind.utils.mpfuture import MPFuture
|
|
|
|
|
|
|
|
@@ -29,5 +29,5 @@ def cleanup_children():
|
|
|
with suppress(psutil.NoSuchProcess):
|
|
|
child.kill()
|
|
|
|
|
|
- # Killing child processes may leave the MPFuture backend broken
|
|
|
+ # Broken code or killing of child processes may leave the MPFuture backend corrupted
|
|
|
MPFuture.reset_backend()
|