Browse Source

fix: set maxRetriesPerRequest to null

pull/2453/head
Wing-Kam Wong 2 years ago
parent
commit
6a54b07217
  1. 4
      packages/nocodb/src/lib/jobs/RedisJobsMgr.ts

4
packages/nocodb/src/lib/jobs/RedisJobsMgr.ts

@ -11,7 +11,9 @@ export default class RedisJobsMgr extends JobsMgr {
super(); super();
this.queue = {}; this.queue = {};
this.workers = {}; this.workers = {};
this.connection = new Redis(config); this.connection = new Redis(config, {
maxRetriesPerRequest: null
});
} }
async add( async add(

Loading…
Cancel
Save