Skip to content
This repository was archived by the owner on Jan 27, 2026. It is now read-only.

Commit 7b29afe

Browse files
authored
fix node store counting (#565)
1 parent 028f24e commit 7b29afe

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

crates/orchestrator/src/store/domains/node_store.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,9 +399,9 @@ impl NodeStore {
399399

400400
let types: Vec<String> = type_pipe.query_async(&mut con).await?;
401401

402-
// Count non-hash format keys
402+
// Count non-hash format keys (including "string" and "none" types)
403403
for key_type in types.iter() {
404-
if key_type != "hash" {
404+
if key_type != "hash" && key_type != "none" {
405405
non_hash_count += 1;
406406
}
407407
}

0 commit comments

Comments
 (0)