You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ro...@apache.org on 2015/06/18 16:38:20 UTC

[1/2] qpid-jms git commit: NO-JIRA: remove stale TODO that has already been taken care of

Repository: qpid-jms
Updated Branches:
  refs/heads/master 1731b2e46 -> 748bcdadf


NO-JIRA: remove stale TODO that has already been taken care of


Project: http://git-wip-us.apache.org/repos/asf/qpid-jms/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-jms/commit/eeb59e84
Tree: http://git-wip-us.apache.org/repos/asf/qpid-jms/tree/eeb59e84
Diff: http://git-wip-us.apache.org/repos/asf/qpid-jms/diff/eeb59e84

Branch: refs/heads/master
Commit: eeb59e8478f426e7e8c34211feca9da828ea412e
Parents: 1731b2e
Author: Robert Gemmell <ro...@apache.org>
Authored: Thu Jun 18 15:16:31 2015 +0100
Committer: Robert Gemmell <ro...@apache.org>
Committed: Thu Jun 18 15:16:31 2015 +0100

----------------------------------------------------------------------
 .../src/main/java/org/apache/qpid/jms/JmsConnection.java          | 3 ---
 1 file changed, 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/eeb59e84/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsConnection.java
----------------------------------------------------------------------
diff --git a/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsConnection.java b/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsConnection.java
index 441fef5..be334e3 100644
--- a/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsConnection.java
+++ b/qpid-jms-client/src/main/java/org/apache/qpid/jms/JmsConnection.java
@@ -311,9 +311,6 @@ public class JmsConnection implements Connection, TopicConnection, QueueConnecti
         // We weren't connected if we got this far, we should now connect to ensure the
         // configured clientID is valid.
         connect();
-
-        // TODO: determine if any resulting failure is only the result of the ClientID value,
-        //       or other reasons such as auth.  (Provider should have thrown the correct error)
     }
 
     /**


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org


[2/2] qpid-jms git commit: QPIDJMS-74: make it easier to distinguish the JVM and OS details

Posted by ro...@apache.org.
QPIDJMS-74: make it easier to distinguish the JVM and OS details


Project: http://git-wip-us.apache.org/repos/asf/qpid-jms/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-jms/commit/748bcdad
Tree: http://git-wip-us.apache.org/repos/asf/qpid-jms/tree/748bcdad
Diff: http://git-wip-us.apache.org/repos/asf/qpid-jms/diff/748bcdad

Branch: refs/heads/master
Commit: 748bcdadf1fa68e988ae80fb90324e39340ff392
Parents: eeb59e8
Author: Robert Gemmell <ro...@apache.org>
Authored: Thu Jun 18 15:32:25 2015 +0100
Committer: Robert Gemmell <ro...@apache.org>
Committed: Thu Jun 18 15:32:25 2015 +0100

----------------------------------------------------------------------
 .../src/main/java/org/apache/qpid/jms/util/MetaDataSupport.java | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/748bcdad/qpid-jms-client/src/main/java/org/apache/qpid/jms/util/MetaDataSupport.java
----------------------------------------------------------------------
diff --git a/qpid-jms-client/src/main/java/org/apache/qpid/jms/util/MetaDataSupport.java b/qpid-jms-client/src/main/java/org/apache/qpid/jms/util/MetaDataSupport.java
index 47789fd..33cd21c 100644
--- a/qpid-jms-client/src/main/java/org/apache/qpid/jms/util/MetaDataSupport.java
+++ b/qpid-jms-client/src/main/java/org/apache/qpid/jms/util/MetaDataSupport.java
@@ -81,12 +81,13 @@ public class MetaDataSupport {
     {
         String details = "unknown";
         try {
-            StringBuilder platformInfo = new StringBuilder(System.getProperty("java.version"));
+            StringBuilder platformInfo = new StringBuilder("JVM: ");
+            platformInfo.append(System.getProperty("java.version"));
             platformInfo.append(", ");
             platformInfo.append(System.getProperty("java.vm.version"));
             platformInfo.append(", ");
             platformInfo.append(System.getProperty("java.vendor"));
-            platformInfo.append(", ");
+            platformInfo.append(", OS: ");
             platformInfo.append(System.getProperty("os.name"));
             platformInfo.append(", ");
             platformInfo.append(System.getProperty("os.version"));


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org