Merge pull request #285 from ggozad/fix/info-readonly
Open database in read-only mode for info and history commands.
This commit is contained in:
commit
c529ecc940
2 changed files with 20 additions and 3 deletions
|
|
@ -1,6 +1,10 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- **`info` and `history` commands**: Open database in read-only mode to prevent write failures on read-only filesystems
|
||||||
|
|
||||||
## [0.31.0] - 2026-02-20
|
## [0.31.0] - 2026-02-20
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
||||||
|
|
@ -80,10 +80,16 @@ class HaikuRAGApp: # pragma: no cover
|
||||||
|
|
||||||
versions = get_package_versions()
|
versions = get_package_versions()
|
||||||
|
|
||||||
# Get comprehensive table statistics (this also runs migrations)
|
|
||||||
from haiku.rag.store.engine import Store
|
from haiku.rag.store.engine import Store
|
||||||
|
|
||||||
store = Store(self.db_path, config=self.config, skip_validation=True)
|
store = Store(
|
||||||
|
self.db_path,
|
||||||
|
config=self.config,
|
||||||
|
skip_validation=True,
|
||||||
|
read_only=True,
|
||||||
|
skip_migration_check=True,
|
||||||
|
before=self.before,
|
||||||
|
)
|
||||||
table_stats = store.get_stats()
|
table_stats = store.get_stats()
|
||||||
|
|
||||||
# Read settings after Store init (migrations have run)
|
# Read settings after Store init (migrations have run)
|
||||||
|
|
@ -199,7 +205,14 @@ class HaikuRAGApp: # pragma: no cover
|
||||||
self.console.print("[red]Database path does not exist.[/red]")
|
self.console.print("[red]Database path does not exist.[/red]")
|
||||||
return
|
return
|
||||||
|
|
||||||
store = Store(self.db_path, config=self.config, skip_validation=True)
|
store = Store(
|
||||||
|
self.db_path,
|
||||||
|
config=self.config,
|
||||||
|
skip_validation=True,
|
||||||
|
read_only=True,
|
||||||
|
skip_migration_check=True,
|
||||||
|
before=self.before,
|
||||||
|
)
|
||||||
|
|
||||||
tables = ["documents", "chunks", "settings"]
|
tables = ["documents", "chunks", "settings"]
|
||||||
if table:
|
if table:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue