Skip to content

Commit

Permalink
Remove obsolete isolation_level config from APDB setup.
Browse files Browse the repository at this point in the history
The code does no harm, but it keeps getting cargo-culted by people who
can't be bothered to look up what it's for.
  • Loading branch information
kfindeisen committed Jul 7, 2023
1 parent 1883452 commit 4688e4e
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions python/lsst/ap/verify/pipeline_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,6 @@ def _getApdbArguments(workspace, parsed):
parsed.db = "sqlite:///" + workspace.dbLocation

args = ["--config", "db_url=" + parsed.db]
# Same special-case check as ApdbConfig.validate()
if parsed.db.startswith("sqlite"):
args.extend(["--config", "isolation_level=READ_UNCOMMITTED"])

return args

Expand Down

0 comments on commit 4688e4e

Please sign in to comment.