Skip to content

Commit

Permalink
Merge pull request #310 from kjsanger/bug/db-argument-name
Browse files Browse the repository at this point in the history
Fix argument name missed when refactoring
  • Loading branch information
kjsanger authored May 17, 2024
2 parents 69fd3df + 715aee7 commit 0d12ad5
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 0d12ad5

Please sign in to comment.