|
|
@@ -18,7 +18,6 @@ from compose.const import PARALLEL_LIMIT
|
|
|
from compose.errors import HealthCheckFailed
|
|
|
from compose.errors import NoHealthCheckConfigured
|
|
|
from compose.errors import OperationFailedError
|
|
|
-from compose.utils import get_output_stream
|
|
|
|
|
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
@@ -82,7 +81,7 @@ def parallel_execute(objects, func, get_name, msg, get_deps=None, limit=None, fa
|
|
|
in the CLI logs, but don't raise an exception (such as attempting to start 0 containers)
|
|
|
"""
|
|
|
objects = list(objects)
|
|
|
- stream = get_output_stream(sys.stderr)
|
|
|
+ stream = sys.stderr
|
|
|
|
|
|
if ParallelStreamWriter.instance:
|
|
|
writer = ParallelStreamWriter.instance
|