exclude empty secure values

This commit is contained in:
Ryan McKinley
2025-08-19 23:41:13 +03:00
parent 6a0ce01d18
commit 2f094fdcd9
@@ -88,6 +88,9 @@ func ToInlineSecureValues(dsType string, dsUID string, keys iter.Seq[string]) co
Name: "ds-" + n[0:10], // predictable name for dual writing
}
}
if len(values) == 0 {
return nil
}
return values
}