File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
DynamoDbEncryption/dafny/DynamoDbEncryption/src Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -136,10 +136,10 @@ module SearchConfigToInfo {
136136 else
137137 MPT. Default (Default := MPT.DefaultCache(entryCapacity := 1000))
138138 else
139- if config. single. cache. Some? then
140- config. single. cache. value
141- else
142- MPT. Default (Default := MPT.DefaultCache(entryCapacity := 1));
139+ if config. single. cache. Some? then
140+ config. single. cache. value
141+ else
142+ MPT. Default (Default := MPT.DefaultCache(entryCapacity := 1));
143143
144144 var cache;
145145 if cacheType. Shared? {
Original file line number Diff line number Diff line change @@ -293,10 +293,10 @@ module SearchableEncryptionInfo {
293293 // # valid for TTL of the Beacon Key Source getting the cache entry.
294294 // # If this is NOT true, then we MUST treat the cache entry as expired.
295295 if getCacheOutput. Failure? || ! cacheEntryWithinLimits (
296- creationTime := getCacheOutput.value.creationTime,
297- now := now,
298- ttlSeconds := cacheTTL
299- ) {
296+ creationTime := getCacheOutput.value.creationTime,
297+ now := now,
298+ ttlSeconds := cacheTTL
299+ ) {
300300 // = specification/searchable-encryption/search-config.md#beacon-keys
301301 // # Beacon keys MUST be obtained from the configured [Beacon Key Source](#beacon-key-source).
302302 var maybeRawBeaconKeyMaterials := store. GetBeaconKey (
You can’t perform that action at this time.
0 commit comments