remove notLocalHost

This commit is contained in:
Danny Coates 2017-06-23 20:01:32 -07:00
parent 529c6d0fe7
commit 5cd44be83c
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
9 changed files with 26 additions and 35 deletions

View file

@ -6,8 +6,6 @@ const fs = require('fs');
const path = require('path');
const crypto = require('crypto');
const notLocalHost = conf.notLocalHost;
const mozlog = require('./log.js');
const log = mozlog('portal.storage');
@ -22,7 +20,7 @@ redis_client.on('error', err => {
log.info('Redis:', err);
});
if (notLocalHost) {
if (conf.s3_bucket) {
module.exports = {
filename: filename,
exists: exists,