fixing settings.ini wbconf
This commit is contained in:
parent
db8c7e6ce0
commit
816411aa7b
|
@ -44,6 +44,8 @@ class DevicehubConfig(Config):
|
|||
host=DB_HOST,
|
||||
db=DB_DATABASE,
|
||||
) # type: str
|
||||
SCHEMA = config('SCHEMA', 'dbtest')
|
||||
HOST = config('HOST', 'localhost')
|
||||
MIN_WORKBENCH = StrictVersion('11.0a1') # type: StrictVersion
|
||||
"""The minimum version of ereuse.org workbench that this devicehub
|
||||
accepts. we recommend not changing this value.
|
||||
|
|
|
@ -323,8 +323,8 @@ class WbConfDocumentView(DeviceView):
|
|||
return jsonify('')
|
||||
|
||||
data = {'token': self.get_token(),
|
||||
'host': app.config['DB_HOST'],
|
||||
'inventory': app.config['DB_SCHEMA']
|
||||
'host': app.config['HOST'],
|
||||
'inventory': app.config['SCHEMA']
|
||||
}
|
||||
data['erase'] = False
|
||||
# data['erase'] = True if wbtype == 'usodywipe' else False
|
||||
|
|
|
@ -1,17 +1,19 @@
|
|||
[settings]
|
||||
|
||||
DH_TOKEN="{{token}}"
|
||||
DH_TOKEN = {{token}}
|
||||
|
||||
DH_HOST="{{host}}"
|
||||
DH_DATABASE="{{inventory}}"
|
||||
DEVICEHUB_URL=https://${DB_HOST}/${DB_DATABASE}/
|
||||
DH_HOST = {{host}}
|
||||
DH_DATABASE = {{inventory}}
|
||||
DEVICEHUB_URL = https://${DB_HOST}/${DB_DATABASE}/
|
||||
|
||||
WB_BENCHMARK = False
|
||||
WB_STRESS_TEST = 0
|
||||
WB_SMART_TEST = ""
|
||||
|
||||
WB_ERASE = {{erase}}
|
||||
WB_BENCHMARK = True
|
||||
WB_STRESS_TEST = 1
|
||||
WB_SMART_TEST = short
|
||||
|
||||
WB_ERASE =
|
||||
WB_ERASE_STEPS = 1
|
||||
WB_ERASE_LEADING_ZEROS = False
|
||||
|
||||
WB_DEBUG = True
|
||||
WB_DEBUG = False
|
||||
|
||||
|
|
Reference in New Issue