Skip to content

Commit

Permalink
fix: add continue to process all applications
Browse files Browse the repository at this point in the history
  • Loading branch information
Siumauricio committed Jan 22, 2025
1 parent c7d5900 commit 81248ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/dokploy/pages/api/deploy/github.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export default async function handler(
if (IS_CLOUD && app.serverId) {
jobData.serverId = app.serverId;
await deploy(jobData);
return true;
continue;
}
await myQueue.add(
"deployments",
Expand Down Expand Up @@ -156,7 +156,7 @@ export default async function handler(
if (IS_CLOUD && composeApp.serverId) {
jobData.serverId = composeApp.serverId;
await deploy(jobData);
return true;
continue;
}

await myQueue.add(
Expand Down

0 comments on commit 81248ed

Please sign in to comment.