Skip to content

Commit

Permalink
Fix argument name missed when refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
kjsanger committed May 17, 2024
1 parent 69fd3df commit 715aee7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/npg_irods/cli/update_secondary_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def main():
print(version())
sys.exit(0)

dbconfig = DBConfig.from_file(args.database_config.name, "mlwh_ro")
dbconfig = DBConfig.from_file(args.db_config.name, "mlwh_ro")
engine = sqlalchemy.create_engine(
dbconfig.url, pool_pre_ping=True, pool_recycle=3600
)
Expand Down

0 comments on commit 715aee7

Please sign in to comment.