Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NXDRIVE-2882: fix_db should create dump.sql in same dir as db (Sourcery refactored) #4473

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nxdrive/dao/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def is_healthy(database: Path, /) -> bool:
con = sqlite3.connect(str(database))
try:
status = con.execute("PRAGMA integrity_check(1)").fetchone()
return bool(status[0] == "ok")
return status[0] == "ok"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function is_healthy refactored with the following changes:

finally:
# According to the documentation:
# Connection object used as context manager only commits or rollbacks
Expand Down
Loading