Merge "Make heat container remove silent."

This commit is contained in:
Zuul 2017-11-16 07:31:11 +00:00 committed by Gerrit Code Review
commit 7b1eb5bec0
1 changed files with 2 additions and 1 deletions

View File

@ -257,7 +257,8 @@ class HeatDockerLauncher(HeatBaseLauncher):
def kill_heat(self, pid):
cmd = ['docker', 'rm', '-f', 'heat_all']
log.debug(' '.join(cmd))
subprocess.check_call(cmd)
# We don't want to hear from this command..
subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
class HeatNativeLauncher(HeatBaseLauncher):