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 8b5a16e commit 093274fCopy full SHA for 093274f
Sources/JobsPostgres/PostgresJobsQueue.swift
@@ -315,8 +315,6 @@ public final class PostgresJobQueue: JobQueueDriver {
315
)
316
317
case .rerun:
318
- guard status != .pending else { return }
319
-
320
let jobs = try await getJobs(withStatus: status)
321
self.logger.info("Moving \(jobs.count) jobs with status: \(status) to job queue")
322
for jobId in jobs {
docker-compose.yaml
@@ -0,0 +1,15 @@
1
+
2
+services:
3
+ postgres:
4
+ image: postgres:17.1-alpine
5
+ ports:
6
+ - 5432:5432
7
+ volumes:
8
+ - db:/var/lib/postgresql/hummingbird
9
+ environment:
10
+ - POSTGRES_PASSWORD=test_password
11
+ - POSTGRES_USER=test_user
12
+ - POSTGRES_DB=test_db
13
+volumes:
14
+ db:
15
+ driver: local
0 commit comments