Skip to content

Commit

Permalink
fixed error: appId is not a valid attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
bigcat88 committed Dec 3, 2023
1 parent 8035b7a commit b6eb66c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/BackgroundJob/ExAppInitStatusCheckJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ protected function run($argument): void {
}
if (($status['init_start_time'] + $initTimeoutMinutes * 60) > time()) {
$this->service->setAppInitProgress(
$exApp->getAppId(), 0, sprintf('ExApp %s initialization timed out (%sm)', $exApp->getAppid(), $initTimeoutMinutes * 60)
$exApp->getAppid(), 0, sprintf('ExApp %s initialization timed out (%sm)', $exApp->getAppid(), $initTimeoutMinutes * 60)
);
}
}
Expand Down

0 comments on commit b6eb66c

Please sign in to comment.