Add ability to conditionally disable auth (#309)

This commit is contained in:
Gregory Schier
2025-11-26 11:05:07 -08:00
committed by GitHub
parent dfa6f1c5b4
commit 8a80e7b833
11 changed files with 346 additions and 110 deletions
-1
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)