ConfigCommand: don't wait when no deployment...

...took place

fixes #2522
This commit is contained in:
Thomas Gelf 2022-04-13 13:47:44 +02:00
parent f61cdf2843
commit 70e8c06b06
2 changed files with 4 additions and 0 deletions

View File

@ -132,6 +132,7 @@ class ConfigCommand extends Command
printf("Config '%s' has been deployed\n", $checksum);
} else {
echo $deployer->getNoDeploymentReason() . "\n";
return;
}
if ($timeout = $this->getWaitTime()) {

View File

@ -11,6 +11,9 @@ v1.10.0 (unreleased)
* You can find issues and feature requests related to this release on our
[roadmap](https://github.com/Icinga/icingaweb2-module-director/milestone/27?closed=1)
### CLI
* FIX: config deploy doesn't try to wait in case of no deployment (#2522)
1.9.1
-----