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:20:55 UTC

[activemq] branch master 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 master
in repository https://gitbox.apache.org/repos/asf/activemq.git


The following commit(s) were added to refs/heads/master by this push:
     new 2a66f53  AMQ-7235 - Remove hard-coded credentials from OsgiConfiguration
     new 2c92f53  Merge pull request #368 from coheigea/AMQ-7235
2a66f53 is described below

commit 2a66f53fdcda047907d42ef6218719771a8f6083
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() {