try to fix storagecounter test in CI

This commit is contained in:
Kevin Froman 2019-09-10 21:59:33 -05:00
parent fd6660aba1
commit d3424c416d
1 changed files with 4 additions and 4 deletions

View File

@ -21,14 +21,14 @@ import os, json, base64
import config, logger, netcontroller
from etc import onionrvalues
from logger.settings import *
from utils import readstatic
def setup_config():
if not os.path.exists(config._configfile):
if os.path.exists('static-data/default_config.json'):
# this is the default config, it will be overwritten if a config file already exists. Else, it saves it
with open('static-data/default_config.json', 'r') as configReadIn:
config.set_config(json.loads(configReadIn.read()))
# this is the default config, it will be overwritten if a config file already exists. Else, it saves it
conf_data = readstatic.read_static('default_config.json', ret_bin=False)
config.set_config(json.loads(conf_data))
config.save()