We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 028f24e commit 7b29afeCopy full SHA for 7b29afe
1 file changed
crates/orchestrator/src/store/domains/node_store.rs
@@ -399,9 +399,9 @@ impl NodeStore {
399
400
let types: Vec<String> = type_pipe.query_async(&mut con).await?;
401
402
- // Count non-hash format keys
+ // Count non-hash format keys (including "string" and "none" types)
403
for key_type in types.iter() {
404
- if key_type != "hash" {
+ if key_type != "hash" && key_type != "none" {
405
non_hash_count += 1;
406
}
407
0 commit comments