You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ea...@apache.org on 2017/07/01 01:37:38 UTC

qpid-dispatch git commit: DISPATCH-421 Fix syntax error

Repository: qpid-dispatch
Updated Branches:
  refs/heads/master a8aecae5b -> b5acca6df


DISPATCH-421 Fix syntax error


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

Branch: refs/heads/master
Commit: b5acca6df81d4d3224f9dae4381ed9a89016f24e
Parents: a8aecae
Author: Ernest Allen <ea...@redhat.com>
Authored: Fri Jun 30 21:37:25 2017 -0400
Committer: Ernest Allen <ea...@redhat.com>
Committed: Fri Jun 30 21:37:25 2017 -0400

----------------------------------------------------------------------
 console/hawtio/src/main/webapp/plugin/js/qdrList.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/b5acca6d/console/hawtio/src/main/webapp/plugin/js/qdrList.js
----------------------------------------------------------------------
diff --git a/console/hawtio/src/main/webapp/plugin/js/qdrList.js b/console/hawtio/src/main/webapp/plugin/js/qdrList.js
index 248c7ba..bb1a004 100644
--- a/console/hawtio/src/main/webapp/plugin/js/qdrList.js
+++ b/console/hawtio/src/main/webapp/plugin/js/qdrList.js
@@ -101,7 +101,7 @@ var QDR = (function(QDR) {
           var statusCode = context.message.application_properties.statusCode;
           if (statusCode < 200 || statusCode >= 300) {
             Core.notification('error', context.message.statusDescription);
-            QDR.log.info('Error ' = context.message.statusDescription)
+            QDR.log.info('Error ' + context.message.statusDescription)
             return;
           }
           $scope.logResults = response.filter( function (entry) {
@@ -647,7 +647,7 @@ var QDR = (function(QDR) {
       var statusCode = context.message.application_properties.statusCode;
       if (statusCode < 200 || statusCode >= 300) {
         Core.notification('error', context.message.statusDescription);
-        QDR.log.info('Error ' = context.message.statusDescription)
+        QDR.log.info('Error ' + context.message.statusDescription)
       } else {
         var note = entity + " " + $filter('Pascalcase')($scope.currentMode.op) + "d"
         Core.notification('success', note);


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