We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14b2442 commit 526d675Copy full SHA for 526d675
app/Jobs/ApplicationDeploymentJob.php
@@ -1448,6 +1448,11 @@ private function generate_nixpacks_confs()
1448
}
1449
$this->nixpacks_plan = json_encode($parsed, JSON_PRETTY_PRINT);
1450
$this->application_deployment_queue->addLogEntry("Final Nixpacks plan: {$this->nixpacks_plan}", hidden: true);
1451
+ if ($this->nixpacks_type === 'rust') {
1452
+ // temporary: disable healthcheck for rust because the start phase does not have curl/wget
1453
+ $this->application->health_check_enabled = false;
1454
+ $this->application->save();
1455
+ }
1456
1457
1458
0 commit comments