We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b45929 commit ff7b6f0Copy full SHA for ff7b6f0
DynamoDbEncryption/dafny/DynamoDbEncryption/src/ConfigToInfo.dfy
@@ -139,7 +139,8 @@ module SearchConfigToInfo {
139
140
var cache;
141
if cacheType.Shared? {
142
- cache := cacheType.Shared;
+ return Failure(DynamoDbEncryptionException(message:="Searchable Encryption does not support shared caches"));
143
+ // cache := cacheType.Shared;
144
} else {
145
//= specification/searchable-encryption/search-config.md#key-store-cache
146
//# For a Beacon Key Source a [CMC](../../submodules/MaterialProviders/aws-encryption-sdk-specification/framework/cryptographic-materials-cache.md)
0 commit comments