Skip to content
Snippets Groups Projects
Commit 3a4c6df0 authored by Brian Warner's avatar Brian Warner
Browse files

Merge pull request #1857 from warner/small-fixes

bin/browserid: minor linty changes (semicolons)
parents 4666b6e1 0ea57136
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@ const
fs = require('fs'),
path = require('path'),
url = require('url'),
http = require('http');
http = require('http'),
urlparse = require('urlparse'),
express = require('express');
......@@ -62,7 +62,7 @@ app.use(i18n.abide({
var statsd_config = config.get('statsd');
if (statsd_config && statsd_config.enabled) {
logger_statsd = require("connect-logger-statsd");
var logger_statsd = require("connect-logger-statsd");
app.use(logger_statsd({
host: statsd_config.hostname || "localhost",
port: statsd_config.port || 8125,
......@@ -157,7 +157,7 @@ db.open(config.get('database'), function (error) {
// shut down express gracefully on SIGINT
shutdown.handleTerminationSignals(app, function(readyForShutdownCB) {
require('../lib/bcrypt.js').shutdown();
db.close(readyForShutdownCB)
db.close(readyForShutdownCB);
});
var bindTo = config.get('bind_to');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment