Commit bdd64a261ca06f7cfeac935b049c6d5684138a61
1 parent
8cfbcf1b7f
Exists in
master
perbaikan lokasi config dan logger
Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff
gateway/resend-delay.js
... | ... | @@ -3,8 +3,8 @@ |
3 | 3 | const LRU = require('lru-cache'); |
4 | 4 | const moment = require('moment'); |
5 | 5 | |
6 | -const config = require('./config'); | |
7 | -const logger = require('./logger'); | |
6 | +const config = require('../config'); | |
7 | +const logger = require('../logger'); | |
8 | 8 | |
9 | 9 | const resendHandlers = LRU({ |
10 | 10 | max: (( config && config.auto_resend && config.auto_resend.max_handler ) ? Number(config.auto_resend.max_handler) : 0) || 5000, |