diff --git a/kolla/cmd/build.py b/kolla/cmd/build.py index b24cd92821..b1cc5bb9d8 100755 --- a/kolla/cmd/build.py +++ b/kolla/cmd/build.py @@ -104,6 +104,9 @@ class PushThread(threading.Thread): ' have the correct privileges to run Docker' ' (root)', image['name']) image['status'] = "connection_error" + except Exception: + LOG.exception('%s:Unknown error when pushing', image['name']) + image['status'] = "push_error" finally: if "error" not in image['status']: LOG.info('%s:Pushed successfully', image['name'])