Skip to content

Commit fc20023

Browse files
CLOUDSTACK-7417: Admin cannot archive or delete events for a deleted account.
1 parent 8ce6eba commit fc20023

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

engine/schema/src/com/cloud/user/dao/AccountDaoImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ public void markForCleanup(long accountId) {
275275
public List<Long> getAccountIdsForDomains(List<Long> domainIds) {
276276
SearchCriteria<Long> sc = AccountIdsSearch.create();
277277
sc.setParameters("ids", domainIds.toArray(new Object[domainIds.size()]));
278-
return customSearch(sc, null);
278+
return customSearchIncludingRemoved(sc, null);
279279
}
280280

281281
@Override

0 commit comments

Comments
 (0)