From: igomon Date: Thu, 2 May 2024 13:56:55 +0000 (-0400) Subject: rgw/s3-notifications: removed logic to dump POST body to prevent printing password... X-Git-Tag: v20.0.0~1982^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F56493%2Fhead;p=ceph.git rgw/s3-notifications: removed logic to dump POST body to prevent printing password associated with topics Signed-off-by: Igor Gomon --- diff --git a/src/rgw/rgw_rest_s3.cc b/src/rgw/rgw_rest_s3.cc index a9a6c3699d0d..9960c73c141c 100644 --- a/src/rgw/rgw_rest_s3.cc +++ b/src/rgw/rgw_rest_s3.cc @@ -5174,8 +5174,6 @@ void update_attribute_map(const std::string& input, AttributeMap& map) { void parse_post_action(const std::string& post_body, req_state* s) { if (post_body.size() > 0) { - ldpp_dout(s, 10) << "Content of POST: " << post_body << dendl; - if (post_body.find("Action") != string::npos) { const boost::char_separator sep("&"); const boost::tokenizer> tokens(post_body, sep);