This is an automated email from the ASF dual-hosted git repository. zwoop pushed a commit to branch 9.0.x in repository https://gitbox.apache.org/repos/asf/trafficserver.git
commit 7bf24497e12e6d5c46a23393f962788bb4e2c5f4 Author: Randall Meyer <[email protected]> AuthorDate: Mon Nov 2 09:15:42 2020 -0800 s3_auth: demote noisy errors around configuration that doesn't affect plugin usability (#7306) (cherry picked from commit a52bd121080dd94f757e54ed65fae2188472b004) --- plugins/s3_auth/s3_auth.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/s3_auth/s3_auth.cc b/plugins/s3_auth/s3_auth.cc index 4261406..696fcab 100644 --- a/plugins/s3_auth/s3_auth.cc +++ b/plugins/s3_auth/s3_auth.cc @@ -188,16 +188,16 @@ public: /* 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 */
