Skip to content

Commit 0da6265

Browse files
committed
fixed noredist build failure
1 parent ae0d524 commit 0da6265

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

plugins/network-elements/juniper-contrail/src/test/java/org/apache/cloudstack/network/contrail/management/MockAccountManager.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -481,12 +481,12 @@ public void checkAccess(Account account, VpcOffering vof, DataCenter zone) throw
481481
}
482482

483483
@Override
484-
public Map<String, String> getKeys(GetUserKeysCmd cmd){
484+
public Pair<Boolean, Map<String, String>> getKeys(GetUserKeysCmd cmd){
485485
return null;
486486
}
487487

488488
@Override
489-
public Map<String, String> getKeys(Long userId) {
489+
public Pair<Boolean, Map<String, String>> getKeys(Long userId) {
490490
return null;
491491
}
492492

server/src/main/java/com/cloud/api/query/QueryManagerImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@ public ListResponse<UserResponse> searchForUsers(ResponseView responseView, List
654654
Pair<List<UserAccountJoinVO>, Integer> result = searchForUsersInternal(cmd);
655655
ListResponse<UserResponse> response = new ListResponse<UserResponse>();
656656
if (CallContext.current().getCallingAccount().getType() == Account.Type.ADMIN) {
657-
responseView = ResponseView.Full;
657+
responseView = ResponseView.Full;
658658
}
659659
List<UserResponse> userResponses = ViewResponseHelper.createUserResponse(responseView, CallContext.current().getCallingAccount().getDomainId(),
660660
result.first().toArray(new UserAccountJoinVO[result.first().size()]));

0 commit comments

Comments
 (0)