You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by et...@apache.org on 2021/10/14 16:10:39 UTC

[storm] branch master updated: STORM-3799 Update the log message to log user information for blob delete reqs (#3415)

This is an automated email from the ASF dual-hosted git repository.

ethanli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/storm.git


The following commit(s) were added to refs/heads/master by this push:
     new d9b1272  STORM-3799 Update the log message to log user information for blob delete reqs (#3415)
d9b1272 is described below

commit d9b12720d149c78b15a7eb0e114c6b5b5824421d
Author: snikhil5 <ns...@yahoo.com>
AuthorDate: Thu Oct 14 11:10:28 2021 -0500

    STORM-3799 Update the log message to log user information for blob delete reqs (#3415)
---
 storm-server/src/main/java/org/apache/storm/daemon/nimbus/Nimbus.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/storm-server/src/main/java/org/apache/storm/daemon/nimbus/Nimbus.java b/storm-server/src/main/java/org/apache/storm/daemon/nimbus/Nimbus.java
index acaa39c..e1741ab 100644
--- a/storm-server/src/main/java/org/apache/storm/daemon/nimbus/Nimbus.java
+++ b/storm-server/src/main/java/org/apache/storm/daemon/nimbus/Nimbus.java
@@ -3899,7 +3899,7 @@ public class Nimbus implements Iface, Shutdownable, DaemonCommon {
                 }
             }
             blobStore.deleteBlob(key, getSubject());
-            LOG.info("Deleted blob for key {}", key);
+            LOG.info("Deleted blob for key {} with {}", key, ReqContext.context());
         } catch (Exception e) {
             LOG.warn("delete blob exception.", e);
             if (e instanceof TException) {