Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
joaojunceira-zendesk committed May 27, 2024
1 parent 20801c5 commit 030bfcf
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions configurator.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
*/
/* eslint-disable node/no-deprecated-api */

const { lookup } = require('dns')

// Minimal radar settings

const logging = require('minilog')('server')
Expand Down Expand Up @@ -73,7 +71,7 @@ Configurator.load = function () {
const configurator = new Configurator()
const configuration = configurator.load.apply(configurator, arguments)

logging.info("--Configurator:" + configuration)
logging.info('--Configurator:' + configuration)

return configuration
}
Expand Down Expand Up @@ -176,7 +174,7 @@ Configurator.prototype._forPersistence = function (configuration) {
connection = parseUrl(configuration.redisUrl)
}

if(configuration.redisReplicaUrl !== null) {
if (configuration.redisReplicaUrl !== null) {
connection.redisReplicaUrl = parseUrl(configuration.redisReplicaUrl)
}
} else {
Expand Down

0 comments on commit 030bfcf

Please sign in to comment.