Skip to content

Commit 1c4eb31

Browse files
committed
fix: handle custom_internal_name check in ApplicationDeploymentJob.php
1 parent b4b6a42 commit 1c4eb31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Jobs/ApplicationDeploymentJob.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1007,7 +1007,7 @@ private function rolling_update()
10071007
if ((bool) $this->application->settings->is_consistent_container_name_enabled) {
10081008
$this->application_deployment_queue->addLogEntry('Consistent container name feature enabled, rolling update is not supported.');
10091009
}
1010-
if (isset($this->application->settings->custom_internal_name)) {
1010+
if (str($this->application->settings->custom_internal_name)->isNotEmpty()) {
10111011
$this->application_deployment_queue->addLogEntry('Custom internal name is set, rolling update is not supported.');
10121012
}
10131013
if ($this->pull_request_id !== 0) {

0 commit comments

Comments
 (0)