From 334009fb7364bea6c4d4ba91901d18641811ac5f Mon Sep 17 00:00:00 2001 From: igomon Date: Thu, 2 May 2024 09:56:55 -0400 Subject: [PATCH] rgw/s3-notifications: removed logic to dump POST body to prevent printing password associated with topics Signed-off-by: Igor Gomon --- src/rgw/rgw_rest_s3.cc | 2 -- 1 file changed, 2 deletions(-) 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); -- 2.47.3