fix: the vault roundtrip test used characters that are unsupported by some major secrets providers

This commit is contained in:
2026-06-04 11:20:46 -06:00
parent 46d4b78ccc
commit 40fdf3aaa7
+1 -1
View File
@@ -177,7 +177,7 @@ impl Vault {
pub fn validate_round_trip(&self) -> Result<()> {
const PROBE_VALUE: &str = "ok";
let probe_key = format!("__coyote_setup_probe_{}__", Uuid::new_v4().simple());
let probe_key = format!("coyote-setup-probe-{}", Uuid::new_v4().simple());
let h = Handle::current();
let result: Result<()> = tokio::task::block_in_place(|| {