We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f49d7fe commit 18114c0Copy full SHA for 18114c0
1 file changed
packages/cipherstash-proxy/src/proxy/zerokms/zerokms.rs
@@ -178,7 +178,9 @@ impl EncryptionService for ZeroKms {
178
.indexes
179
.iter()
180
.find(|i| matches!(i.index_type, IndexType::SteVec { .. }))
181
- .map(|index| EqlOperation::Query(&index.index_type, QueryOp::SteVecSelector))
+ .map(|index| {
182
+ EqlOperation::Query(&index.index_type, QueryOp::SteVecSelector)
183
+ })
184
.unwrap_or(EqlOperation::Store),
185
};
186
0 commit comments