outposts: fix empty message when docker outpost controller has changed nothing

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer
2021-07-04 13:48:43 +02:00
parent 320dab3425
commit 5afe88a605
2 changed files with 2 additions and 1 deletions

View File

@ -169,6 +169,7 @@ class DockerController(BaseController):
self.logger.info("Container is not running, restarting...")
container.start()
return None
self.logger.info("Container is running")
return None
except DockerException as exc:
raise ControllerException(str(exc)) from exc