Skip to content

Commit

Permalink
Merge pull request #24 from pagani-BETTERHOMES/master
Browse files Browse the repository at this point in the history
Fix return code for successful liveness probe
  • Loading branch information
das-nagnag authored Aug 25, 2023
2 parents e04f956 + f9bea67 commit a4d8539
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Command/AppCommandController.php
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public function isAliveCommand(): void
if (! $testResult->hasErrors()) {
$this->outputLine('<success>Application is alive</success>');
$this->outputLine();
$this->quit(1);
$this->quit(0);
} else {
$this->outputLine('<error>Application is dead</error>');
$this->outputLine();
Expand Down

0 comments on commit a4d8539

Please sign in to comment.