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 2016/11/14 21:59:14 UTC

qpid-dispatch git commit: DISPATCH-565 Fix the order of the argements passed to sendMethod

Repository: qpid-dispatch
Updated Branches:
  refs/heads/master 5505f3e42 -> 8b48b0eaa


DISPATCH-565 Fix the order of the argements passed to sendMethod


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

Branch: refs/heads/master
Commit: 8b48b0eaa2225b42147f1abb7088abbe17aab0a9
Parents: 5505f3e
Author: Ernest Allen <ea...@redhat.com>
Authored: Mon Nov 14 16:59:09 2016 -0500
Committer: Ernest Allen <ea...@redhat.com>
Committed: Mon Nov 14 16:59:09 2016 -0500

----------------------------------------------------------------------
 console/stand-alone/plugin/js/qdrList.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/8b48b0ea/console/stand-alone/plugin/js/qdrList.js
----------------------------------------------------------------------
diff --git a/console/stand-alone/plugin/js/qdrList.js b/console/stand-alone/plugin/js/qdrList.js
index 800dde4..3cb266f 100644
--- a/console/stand-alone/plugin/js/qdrList.js
+++ b/console/stand-alone/plugin/js/qdrList.js
@@ -91,7 +91,7 @@ var QDR = (function(QDR) {
 				$scope.logResults = [];
 				$scope.fetchingLog = true;
 				var entity; // undefined since it is not supported in the GET-LOG call
-				QDRService.sendMethod($scope.currentNode.id, entity, {}, {}, $scope.currentMode.op, function (nodeName, entity, response, context) {
+				QDRService.sendMethod($scope.currentNode.id, entity, {}, $scope.currentMode.op, {}, function (nodeName, entity, response, context) {
 					$scope.fetchingLog = false;
 					var statusCode = context.message.application_properties.statusCode;
 					if (statusCode < 200 || statusCode >= 300) {


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