outposts: fix attribute error in docker controller
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
9a42c5815d
commit
797e31696a
|
@ -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()
|
||||||
|
|
Reference in New Issue