Skip to content

Commit fdc7d40

Browse files
committed
Remove unnecessary blank line and comment out retryStrategy in config
1 parent 975db77 commit fdc7d40

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/backend-runner/backend-runner.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export class BackendRunnerService implements OnApplicationBootstrap, OnModuleIni
128128
worker.on('error', (err) => this.logger.error(err));
129129
worker.on('closed', () => {
130130
this.logger.fatal(`Worker closed 🟥`);
131-
131+
132132
if (process.env.NODE_ENV === 'production') {
133133
this.logger.fatal(`Closing application...`);
134134
process.exit(1);

src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export default (): ConfigInstance => {
3131
showFriendlyErrorStack: true,
3232
maxRetriesPerRequest: null,
3333
enableOfflineQueue: false,
34-
retryStrategy: (times) => Math.min(times * 1_000, 10_000),
34+
// retryStrategy: (times) => Math.min(times * 1_000, 10_000),
3535
},
3636
},
3737
};

0 commit comments

Comments
 (0)