Skip to content

Commit e6da0bc

Browse files
authored
update kms credential todo (#760)
1 parent 8fa99d5 commit e6da0bc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/client/csfle/state_machine.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,10 @@ impl CryptExecutor {
181181
})
182182
.await?;
183183
}
184-
State::NeedKmsCredentials => todo!("RUST-1314"),
184+
State::NeedKmsCredentials => {
185+
// TODO(RUST-1314, RUST-1417): support fetching KMS credentials.
186+
return Err(Error::internal("KMS credentials are not yet supported"));
187+
},
185188
State::Ready => {
186189
let (tx, rx) = oneshot::channel();
187190
let mut thread_ctx = std::mem::replace(

0 commit comments

Comments
 (0)