about summary refs log tree commit diff
path: root/streaming
diff options
context:
space:
mode:
Diffstat (limited to 'streaming')
-rw-r--r--streaming/index.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/streaming/index.js b/streaming/index.js
index bf7218e8a..d4fb8cad3 100644
--- a/streaming/index.js
+++ b/streaming/index.js
@@ -105,7 +105,8 @@ const startWorker = (workerId) => {
     pgConfigs.development.ssl = true;
     pgConfigs.production.ssl  = true;
   }
-  const app    = express();
+
+  const app = express();
   app.set('trusted proxy', process.env.TRUSTED_PROXY_IP || 'loopback,uniquelocal');
 
   const pgPool = new pg.Pool(Object.assign(pgConfigs[env], dbUrlToConfig(process.env.DATABASE_URL)));