implement runtime override

This commit is contained in:
Suhas 2021-01-20 15:12:30 -05:00
parent 554d25ae17
commit 5fe6caf805

View file

@ -52,7 +52,9 @@ def run(args):
# Apply config overrides
overrides = args.config_override
#TODO: substitute overriden KV pairs in config dict ONLY AFTER ADDING TESTS
for k in overrides:
logging.debug("Overriding %s from %s to %s"%(k,config[k],overrides[k]))
config[k] = overrides[k]
# --- All the standalone commands are now done --- #
# Get the journal we're going to be working with