fix the key name to hide the accessKeyId and secretAccessKey (#5878)

Co-authored-by: 郑泽超 <zhengzechao@qiyi.com>
This commit is contained in:
zechao zheng 2020-03-17 11:15:10 +08:00 committed by GitHub
parent f8b8b3d2ee
commit d55f062fe7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -28,10 +28,10 @@ public interface Constants {
String DEFAULT_ACCESS_KEY_STORAGE = "urlstorage";
String ACCESS_KEY_STORAGE_KEY = "accessKey.storage";
String ACCESS_KEY_ID_KEY = "accessKeyId";
String SECRET_ACCESS_KEY_KEY = "secretAccessKey";
// the key starting with "." shouldn't be output
String ACCESS_KEY_ID_KEY = ".accessKeyId";
// the key starting with "." shouldn't be output
String SECRET_ACCESS_KEY_KEY = ".secretAccessKey";
String REQUEST_TIMESTAMP_KEY = "timestamp";