From 5c69d93ae14c9a42c0d2c3c5afcd7f57182a8bf4 Mon Sep 17 00:00:00 2001 From: Andrey Borysenko Date: Mon, 5 Aug 2024 15:17:56 +0300 Subject: [PATCH] fix(DockerActions): correct info log, move after imageId change Signed-off-by: Andrey Borysenko --- lib/DeployActions/DockerActions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/DeployActions/DockerActions.php b/lib/DeployActions/DockerActions.php index 346ff9d0..79742dfe 100644 --- a/lib/DeployActions/DockerActions.php +++ b/lib/DeployActions/DockerActions.php @@ -247,8 +247,8 @@ public function pullImage( } } $this->logger->info(sprintf('Failed to pull "extended" image for %s: %s', $imageId, $r)); - $this->logger->info(sprintf('Pulling "base" image: %s', $imageId)); $imageId = $this->buildBaseImageName($params); + $this->logger->info(sprintf('Pulling "base" image: %s', $imageId)); try { $r = $this->pullImageInternal($dockerUrl, $exApp, $startPercent, $maxPercent, $imageId); } catch (GuzzleException $e) {