You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by pd...@apache.org on 2022/07/06 06:56:09 UTC

[zeppelin] branch master updated: [ZEPPELIN-5759] Add user to restartSetting (#4395)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 8c40272874 [ZEPPELIN-5759] Add user to restartSetting (#4395)
8c40272874 is described below

commit 8c402728748cd8248366ea088ec4b57be37ad2db
Author: Philipp Dallig <ph...@gmail.com>
AuthorDate: Wed Jul 6 08:56:04 2022 +0200

    [ZEPPELIN-5759] Add user to restartSetting (#4395)
---
 .../src/main/java/org/apache/zeppelin/rest/InterpreterRestApi.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/zeppelin-server/src/main/java/org/apache/zeppelin/rest/InterpreterRestApi.java b/zeppelin-server/src/main/java/org/apache/zeppelin/rest/InterpreterRestApi.java
index bbf947099d..8d3e39022e 100644
--- a/zeppelin-server/src/main/java/org/apache/zeppelin/rest/InterpreterRestApi.java
+++ b/zeppelin-server/src/main/java/org/apache/zeppelin/rest/InterpreterRestApi.java
@@ -197,7 +197,7 @@ public class InterpreterRestApi {
   @Path("setting/restart/{settingId}")
   @ZeppelinApi
   public Response restartSetting(String message, @PathParam("settingId") String settingId) {
-    LOGGER.info("Restart interpreterSetting {}, msg={}", settingId, message);
+    LOGGER.info("Restart interpreterSetting {}, msg={}, user={}", settingId, message, authenticationService.getPrincipal());
 
     InterpreterSetting setting = interpreterSettingManager.get(settingId);
     try {