This is an automated email from the ASF dual-hosted git repository.
zjffdu pushed a commit to branch branch-0.8
in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/branch-0.8 by this push:
new e11b819 [ZEPPELIN-4278]: Fixed closing bracket in bin/common.cmd
e11b819 is described below
commit e11b819903e28bd3a337f65532aadc45c470d5c3
Author: msid <[email protected]>
AuthorDate: Tue Aug 27 20:08:53 2019 +0300
[ZEPPELIN-4278]: Fixed closing bracket in bin/common.cmd
### What is this PR for?
Fixed closing bracket in common.cmd file, that was causing error on running
zeppelin in Windows environment
### What type of PR is it?
Bug Fix
### What is the Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-4278
### How should this be tested?
User should be able to run Zeppelin on Windows environment
### Questions:
* Does the licenses files need update?
* No
* Is there breaking changes for older versions?
* No
* Does this needs documentation?
* No
Author: msid <[email protected]>
Closes #3433 from msid/ZEPPELIN-4278 and squashes the following commits:
61338e65c [msid] [ZEPPELIN-4278]: Fixed closing bracket in bin/common.cmd
---
bin/common.cmd | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/common.cmd b/bin/common.cmd
index 21657c1..b9e4ea0 100644
--- a/bin/common.cmd
+++ b/bin/common.cmd
@@ -74,7 +74,7 @@ if not defined ZEPPELIN_JAVA_OPTS (
if defined ZEPPELIN_JMX_ENABLE (
if not defined ZEPPELIN_JMX_PORT (
set ZEPPELIN_JMX_PORT="9996"
- }
+ )
set JMX_JAVA_OPTS=" -Dcom.sun.management.jmxremote
-Dcom.sun.management.jmxremote.port=${ZEPPELIN_JMX_PORT}
-Dcom.sun.management.jmxremote.authenticate=false
-Dcom.sun.management.jmxremote.ssl=false"
set ZEPPELIN_JAVA_OPTS=%JMX_JAVA_OPTS% %ZEPPELIN_JAVA_OPTS
)