Conditionally disable auth

This commit is contained in:
Gregory Schier
2025-11-26 10:30:16 -08:00
parent dfa6f1c5b4
commit 79dd50474d
11 changed files with 348 additions and 117 deletions

View File

@@ -155,7 +155,6 @@ impl EncryptionManager {
let raw_key = mkey
.decrypt(decoded_key.as_slice())
.map_err(|e| WorkspaceKeyDecryptionError(e.to_string()))?;
info!("Got existing workspace key for {workspace_id}");
let wkey = WorkspaceKey::from_raw_key(raw_key.as_slice());
Ok(wkey)