Do not log errors on non-existing container
authorMartin André <m.andre@redhat.com>
Tue, 11 Apr 2017 07:29:52 +0000 (09:29 +0200)
committerMartin André <m.andre@redhat.com>
Tue, 11 Apr 2017 07:29:52 +0000 (09:29 +0200)
This is cluttering up the logs with useless error messages, making it
more difficult than necessary to debug the CI job.

Change-Id: Icbdc4c74d99fea39b8722955dab56e5f538849aa

docker/docker-puppet.py

index c364d03..9a8e921 100755 (executable)
@@ -61,7 +61,10 @@ def rm_container(name):
                                stderr=subprocess.PIPE)
     cmd_stdout, cmd_stderr = subproc.communicate()
     print(cmd_stdout)
-    print(cmd_stderr)
+    if cmd_stderr and \
+            cmd_stderr != 'Error response from daemon: ' \
+            'No such container: {}\n'.format(name):
+        print(cmd_stderr)
 
 process_count = int(os.environ.get('PROCESS_COUNT',
                                    multiprocessing.cpu_count()))