Преглед на файлове

UPDATED log message

Signed-off-by: Zuhayr Elahi <[email protected]>
Zuhayr Elahi преди 6 години
родител
ревизия
8835056ce4
променени са 1 файла, в които са добавени 1 реда и са изтрити 3 реда
  1. 1 3
      compose/service.py

+ 1 - 3
compose/service.py

@@ -624,9 +624,7 @@ class Service(object):
             container.start()
         except APIError as ex:
             if "driver failed programming external connectivity" in ex.explanation:
-                log.warn(
-                    "Port is already in use, check the docker-compose file to see if the same" +
-                    " port was allocated to multiple services")
+                log.warn("Host is already in use by another container")
             raise OperationFailedError("Cannot start service %s: %s" % (self.name, ex.explanation))
         return container