You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by jb...@apache.org on 2019/07/04 15:21:23 UTC

[activemq] branch activemq-5.15.x updated: AMQ-7235 - Remove hard-coded credentials from OsgiConfiguration

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

jbonofre pushed a commit to branch activemq-5.15.x
in repository https://gitbox.apache.org/repos/asf/activemq.git


The following commit(s) were added to refs/heads/activemq-5.15.x by this push:
     new ece645b  AMQ-7235 - Remove hard-coded credentials from OsgiConfiguration
ece645b is described below

commit ece645b98b5220c47e9db7b07ebbba1245d01281
Author: Colm O hEigeartaigh <co...@apache.org>
AuthorDate: Wed Jul 3 18:28:55 2019 +0100

    AMQ-7235 - Remove hard-coded credentials from OsgiConfiguration
---
 .../java/org/apache/activemq/web/config/OsgiConfiguration.java    | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/activemq-web-console/src/main/java/org/apache/activemq/web/config/OsgiConfiguration.java b/activemq-web-console/src/main/java/org/apache/activemq/web/config/OsgiConfiguration.java
index 276f3be..9b67be7 100644
--- a/activemq-web-console/src/main/java/org/apache/activemq/web/config/OsgiConfiguration.java
+++ b/activemq-web-console/src/main/java/org/apache/activemq/web/config/OsgiConfiguration.java
@@ -34,12 +34,12 @@ public class OsgiConfiguration extends AbstractConfiguration implements ManagedS
     private ServiceRegistration service;
 
     private String jmxUrl = "service:jmx:rmi:///jndi/rmi://localhost:1099/karaf-root";
-    private String jmxUser = "karaf";
-    private String jmxPassword = "karaf";
+    private String jmxUser;
+    private String jmxPassword;
 
     private String jmsUrl = "tcp://localhost:61616";
-    private String jmsUser = "karaf";
-    private String jmsPassword = "karaf";
+    private String jmsUser;
+    private String jmsPassword;
 
     public OsgiConfiguration() {