Repository: cloudstack
Updated Branches:
  refs/heads/4.3 720315b8d -> 19b72d6cf


CLOUDSTACK-6508: impossible to list projects from API with domainid set


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/19b72d6c
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/19b72d6c
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/19b72d6c

Branch: refs/heads/4.3
Commit: 19b72d6cf57665fc3935fdd7f7e9dad9117f0616
Parents: 720315b
Author: Saksham Srivastava <saksham.srivast...@citrix.com>
Authored: Mon Jun 2 15:51:06 2014 +0530
Committer: Sebastien Goasguen <run...@gmail.com>
Committed: Tue Jul 22 13:36:42 2014 -0400

----------------------------------------------------------------------
 server/src/com/cloud/api/query/QueryManagerImpl.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/19b72d6c/server/src/com/cloud/api/query/QueryManagerImpl.java
----------------------------------------------------------------------
diff --git a/server/src/com/cloud/api/query/QueryManagerImpl.java 
b/server/src/com/cloud/api/query/QueryManagerImpl.java
index 6671ab9..06def7f 100644
--- a/server/src/com/cloud/api/query/QueryManagerImpl.java
+++ b/server/src/com/cloud/api/query/QueryManagerImpl.java
@@ -1307,7 +1307,7 @@ public class QueryManagerImpl extends ManagerBase 
implements QueryService {
                 throw new PermissionDeniedException("Can't list account " + 
accountName + " projects; unauthorized");
             }
 
-            if (domainId != null && domainId.equals(caller.getDomainId())) {
+            if (domainId != null && !domainId.equals(caller.getDomainId())) {
                 throw new PermissionDeniedException("Can't list domain id= " + 
domainId + " projects; unauthorized");
             }
 

Reply via email to