-
Notifications
You must be signed in to change notification settings - Fork 346
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[reconstruction] change configFilterChain from public sigleton to pri…
…vate owned by ConfigClient (#700) * change configFilterChain from public sigleton to private owned by ConfigClient * fix up encryptedDataKey cache * tiny fix * tiny fix * change mse endpoint * add using localDiskCache test case * add using localDiskCache test case * add using localDiskCache test case
- Loading branch information
Showing
16 changed files
with
556 additions
and
323 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package cache | ||
|
||
type ConfigCachedFileType string | ||
|
||
const ( | ||
ConfigContent ConfigCachedFileType = "Config Content" | ||
ConfigEncryptedDataKey ConfigCachedFileType = "Config Encrypted Data Key" | ||
|
||
ENCRYPTED_DATA_KEY_FILE_NAME = "encrypted-data-key" | ||
FAILOVER_FILE_SUFFIX = "_failover" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.