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 35d7a3a commit 326380cCopy full SHA for 326380c
backend/index.js
@@ -8,18 +8,15 @@ async function appStart () {
8
const app = require('./app');
9
const apiValidator = require('./lib/validator/api');
10
const internalCertificate = require('./internal/certificate');
11
- const internalIpRanges = require('./internal/ip_ranges');
12
13
return migrate.latest()
14
.then(setup)
15
.then(() => {
16
return apiValidator.loadSchemas;
17
})
18
- .then(internalIpRanges.fetch)
19
20
21
internalCertificate.initTimer();
22
- internalIpRanges.initTimer();
23
24
const server = app.listen(3000, () => {
25
logger.info('Backend PID ' + process.pid + ' listening on port 3000 ...');
0 commit comments