outposts: fix attribute error in docker controller

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-10-14 13:37:56 +02:00
parent 9a42c5815d
commit 797e31696a
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ class DockerController(BaseController):
if should_image not in container.image.tags: if should_image not in container.image.tags:
self.logger.info( self.logger.info(
"Container has mismatched image, re-creating...", "Container has mismatched image, re-creating...",
has=container.tags, has=container.image.tags,
should=should_image, should=should_image,
) )
self.down() self.down()