mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-6617: [Automation] detach / resize volume test cases failing
with permission error.
This commit is contained in:
parent
5f8641e908
commit
5c3858b504
|
|
@ -298,16 +298,16 @@ public class RoleBasedEntityAccessChecker extends DomainChecker implements Secur
|
|||
boolean allow;
|
||||
String denyMsg;
|
||||
|
||||
public CheckAccessResult(boolean allow) {
|
||||
this(allow, null);
|
||||
public CheckAccessResult(boolean aw) {
|
||||
this(aw, null);
|
||||
}
|
||||
|
||||
public CheckAccessResult(String msg) {
|
||||
this(false, msg);
|
||||
}
|
||||
|
||||
public CheckAccessResult(boolean allow, String msg) {
|
||||
allow = allow;
|
||||
public CheckAccessResult(boolean aw, String msg) {
|
||||
allow = aw;
|
||||
denyMsg = msg;
|
||||
}
|
||||
|
||||
|
|
@ -315,8 +315,8 @@ public class RoleBasedEntityAccessChecker extends DomainChecker implements Secur
|
|||
return allow;
|
||||
}
|
||||
|
||||
public void setAllow(boolean allow) {
|
||||
this.allow = allow;
|
||||
public void setAllow(boolean aw) {
|
||||
allow = aw;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue