File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
DynamoDbEncryptionTransforms/src Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -212,11 +212,11 @@ module SearchConfigToInfo {
212
212
var getKeyStoreInfoOutput :- getKeyStoreInfoOutput?. MapFailure (e => Error.AwsCryptographyKeyStore(e));
213
213
var logicalKeyStoreName : string := getKeyStoreInfoOutput. logicalKeyStoreName;
214
214
var logicalKeyStoreNameBytes : seq < uint8> :- UTF8. Encode (logicalKeyStoreName)
215
- .MapFailure (
216
- e => Error.DynamoDbEncryptionException(
217
- message := "Could not UTF-8 Encode Logical Key Store Name: " + e
218
- )
219
- );
215
+ .MapFailure (
216
+ e => Error.DynamoDbEncryptionException(
217
+ message := "Could not UTF-8 Encode Logical Key Store Name: " + e
218
+ )
219
+ );
220
220
221
221
if config. multi? {
222
222
:- Need (0 < config.multi.cacheTTL, E("Beacon Cache TTL must be at least 1."));
Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ module
156
156
assert SearchConfigToInfo. ValidSearchConfig (inputConfig.search);
157
157
SearchInModifies (config, tableName);
158
158
reveal SearchConfigToInfo. ValidSharedCache ();
159
- // TODO: remove assume axiom; this should be generated by smithy-dafny
159
+ // TODO: remove assume axiom; this should be generated by smithy-dafny
160
160
assume {:axiom} inputConfig. search. Some? ==> SearchConfigToInfo. ValidSharedCache (inputConfig.search.value.versions[0].keySource);
161
161
var searchR := SearchConfigToInfo. Convert (inputConfig);
162
162
var search :- searchR. MapFailure (e => AwsCryptographyDbEncryptionSdkDynamoDb(e));
You can’t perform that action at this time.
0 commit comments