Skip to content

Commit

Permalink
leave transform engine
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Buchleitner <[email protected]>
  • Loading branch information
mabunixda committed Oct 24, 2024
1 parent 5e34aa1 commit 9b68afb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,12 +135,12 @@ def update_submit():
if conf.has_section('VAULT'):
if conf['VAULT']['Enabled'].lower() == 'true':
logger.info('Vault is enabled...')
if conf['VAULT']['Transform'].lower() == 'true':
logger.info('Using Transform database client...')
try:
dbc = db_client_transform.DbClient()
except Exception as e:
logging.error("There was an error starting the server: {}".format(e))
# if conf['VAULT']['Transform'].lower() == 'true':
# logger.info('Using Transform database client...')
# try:
# dbc = db_client_transform.DbClient()
# except Exception as e:
# logging.error("There was an error starting the server: {}".format(e))
vault_token = ""
if conf['VAULT']['InjectToken'].lower() == 'true':
logger.info('Using Injected vault token')
Expand Down

0 comments on commit 9b68afb

Please sign in to comment.