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 cdad6af commit d628a79Copy full SHA for d628a79
packages/auth-services/src/queue-manager/src/bullmqSetup.ts
@@ -3,11 +3,6 @@ import { env } from '../../env';
3
import { parseRedisUrl } from './helper/redisUrlParser';
4
import { JobName } from './jobRegistry';
5
6
-const BigIntStringify = (obj: any) =>
7
- JSON.stringify(obj, (_key, value) =>
8
- typeof value === 'bigint' ? value.toString() : value
9
- );
10
-
11
export const mainQueueName = 'pkpAuthServiceQueue';
12
13
let bullmqConnectionOptions: ConnectionOptions = parseRedisUrl(env.REDIS_URL);
0 commit comments