Fix CLI storage.lock for StoragePool, update changelogs with startup fix

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Scott Reimers 2026-03-22 22:22:12 -04:00
parent 7b9edc13da
commit 68afc40b16
3 changed files with 3 additions and 2 deletions

View file

@ -170,7 +170,7 @@ async fn main() -> anyhow::Result<()> {
// Start blob eviction cycle (every 5 min, default 1 GB cache limit)
let cache_max_bytes: u64 = {
let storage = node.storage.lock().await;
let storage = node.storage.get().await;
storage.get_setting("cache_size_bytes")
.ok()
.flatten()