Skip to content

Commit 25a6b3b

Browse files
committed
fix: use FAKTORY_URL
1 parent 321870a commit 25a6b3b

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

orchestrator/src/lib/infrastructure/faktory/faktory-client.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
import faktory from "faktory-worker";
21
import type { Job } from "faktory-worker";
2+
import faktory from "faktory-worker";
33

44
const client = new faktory.Client({
5-
host: process.env.FAKTORY_HOST,
6-
port: process.env.FAKTORY_PORT,
7-
password: process.env.FAKTORY_PASSWORD,
5+
url: process.env.FAKTORY_URL,
86
});
97

108
export { client, faktory };

0 commit comments

Comments
 (0)