mirror of
https://github.com/NixOS/nix.git
synced 2025-12-03 15:40:59 +01:00
NarInfoDiskCacheImpl: Make dbPath a parameter
This allows testing with a clean database. (cherry picked from commit79f62d2dda) (cherry picked from commit4972085195)
This commit is contained in:
parent
3b5a341c8c
commit
f6192b8c23
1 changed files with 1 additions and 2 deletions
|
|
@ -84,11 +84,10 @@ public:
|
|||
|
||||
Sync<State> _state;
|
||||
|
||||
NarInfoDiskCacheImpl()
|
||||
NarInfoDiskCacheImpl(Path dbPath = getCacheDir() + "/nix/binary-cache-v6.sqlite")
|
||||
{
|
||||
auto state(_state.lock());
|
||||
|
||||
Path dbPath = getCacheDir() + "/nix/binary-cache-v6.sqlite";
|
||||
createDirs(dirOf(dbPath));
|
||||
|
||||
state->db = SQLite(dbPath);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue