CLOUDSTACK-9561 Unable to delete domain/Account

This commit is contained in:
Sudharma Jain 2016-10-27 10:58:37 +05:30
parent 5a2a2f41b6
commit 2c443cd189
1 changed files with 0 additions and 1 deletions

View File

@ -96,7 +96,6 @@ public class VolumeDaoImpl extends GenericDaoBase<VolumeVO, Long> implements Vol
public List<VolumeVO> findByAccount(long accountId) {
SearchCriteria<VolumeVO> sc = AllFieldsSearch.create();
sc.setParameters("accountId", accountId);
sc.setParameters("state", Volume.State.Ready);
return listBy(sc);
}