Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions plugins/s3_auth/s3_auth.cc
Original file line number Diff line number Diff line change
Expand Up @@ -188,16 +188,16 @@ class S3Config
/* Optional parameters, issue warning if v2 parameters are used with v4 and vice-versa (wrong parameters are ignored anyways) */
if (2 == _version) {
if (_v4includeHeaders_modified && !_v4includeHeaders.empty()) {
TSError("[%s] headers are not being signed with AWS auth v2, included headers parameter ignored", PLUGIN_NAME);
TSDebug("[%s] headers are not being signed with AWS auth v2, included headers parameter ignored", PLUGIN_NAME);
}
if (_v4excludeHeaders_modified && !_v4excludeHeaders.empty()) {
TSError("[%s] headers are not being signed with AWS auth v2, excluded headers parameter ignored", PLUGIN_NAME);
TSDebug("[%s] headers are not being signed with AWS auth v2, excluded headers parameter ignored", PLUGIN_NAME);
}
if (_region_map_modified && !_region_map.empty()) {
TSError("[%s] region map is not used with AWS auth v2, parameter ignored", PLUGIN_NAME);
TSDebug("[%s] region map is not used with AWS auth v2, parameter ignored", PLUGIN_NAME);
}
if (nullptr != _token || _token_len > 0) {
TSError("[%s] session token support with AWS auth v2 is not implemented, parameter ignored", PLUGIN_NAME);
TSDebug("[%s] session token support with AWS auth v2 is not implemented, parameter ignored", PLUGIN_NAME);
}
} else {
/* 4 == _version */
Expand Down