Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(bug): Allowed pending jobs to run on start if pendingJobsInitia… #7

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions Sources/JobsPostgres/PostgresJobsQueue.swift
Original file line number Diff line number Diff line change
Expand Up @@ -315,8 +315,6 @@ public final class PostgresJobQueue: JobQueueDriver {
)

case .rerun:
guard status != .pending else { return }

let jobs = try await getJobs(withStatus: status)
self.logger.info("Moving \(jobs.count) jobs with status: \(status) to job queue")
for jobId in jobs {
Expand Down
15 changes: 15 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@

services:
postgres:
image: postgres:17.1-alpine
ports:
- 5432:5432
volumes:
- db:/var/lib/postgresql/hummingbird
environment:
- POSTGRES_PASSWORD=test_password
- POSTGRES_USER=test_user
- POSTGRES_DB=test_db
volumes:
db:
driver: local
Loading