mirror of
https://github.com/tiennm99/coolify.git
synced 2026-04-22 22:19:30 +00:00
Add deployment queue limit to prevent queue bombing
- Add configurable deployment_queue_limit server setting (default: 25) - Check queue size before accepting new deployments - Return 429 status for webhooks/API when queue is full (allows retry) - Show error toast in UI when queue limit reached - Add UI control in Server Advanced settings Fixes #6708 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -1813,7 +1813,7 @@ class ApplicationDeploymentJob implements ShouldBeEncrypted, ShouldQueue
|
||||
$this->application->update(['status' => 'running']);
|
||||
$this->application_deployment_queue->addLogEntry('New container is healthy.');
|
||||
break;
|
||||
} elseif (str($this->saved_outputs->get('health_check'))->replace('"', '')->value() === 'unhealthy') {
|
||||
} elseif (str($this->saved_outputs->get('health_check'))->replace('"', '')->value() === 'unhealthy') {
|
||||
$this->newVersionIsHealthy = false;
|
||||
$this->application_deployment_queue->addLogEntry('New container is unhealthy.', type: 'error');
|
||||
$this->query_logs();
|
||||
|
||||
Reference in New Issue
Block a user