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 {
212212 var getKeyStoreInfoOutput :- getKeyStoreInfoOutput?. MapFailure (e => Error.AwsCryptographyKeyStore(e));
213213 var logicalKeyStoreName : string := getKeyStoreInfoOutput. logicalKeyStoreName;
214214 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+ );
220220
221221 if config. multi? {
222222 :- 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
156156 assert SearchConfigToInfo. ValidSearchConfig (inputConfig.search);
157157 SearchInModifies (config, tableName);
158158 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
160160 assume {:axiom} inputConfig. search. Some? ==> SearchConfigToInfo. ValidSharedCache (inputConfig.search.value.versions[0].keySource);
161161 var searchR := SearchConfigToInfo. Convert (inputConfig);
162162 var search :- searchR. MapFailure (e => AwsCryptographyDbEncryptionSdkDynamoDb(e));
You can’t perform that action at this time.
0 commit comments