forked from wei/pull
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworker.ts
38 lines (31 loc) · 1.05 KB
/
worker.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import { createSchedulerWorker } from "@wei/probot-scheduler";
import { Redis } from "ioredis";
import { appConfig } from "@/src/configs/app-config.ts";
import { getRepoProcessor } from "@/src/processor/index.ts";
import { createProbot } from "probot";
const probot = createProbot();
const RepoJobProcessor = getRepoProcessor(probot);
const redisClient = new Redis(appConfig.redisConfig!, {
maxRetriesPerRequest: null,
name: `${appConfig.appSlug}-worker`,
});
const worker = createSchedulerWorker(
RepoJobProcessor,
{
connection: redisClient,
concurrency: 10,
},
);
worker.on("completed", (job) => {
console.log(`Job ${job.id} completed successfully`);
});
worker.on("failed", (job, err) => {
console.error(`Job ${job?.id} failed: ${err.message}`);
});
const gracefulShutdown = async (signal: string) => {
console.log(`Received ${signal}, closing worker...`);
await worker.close();
Deno.exit(0);
};
Deno.addSignalListener("SIGINT", () => gracefulShutdown("SIGINT"));
Deno.addSignalListener("SIGTERM", () => gracefulShutdown("SIGTERM"));