mirror of https://github.com/apache/cloudstack.git
fixed start management server
This commit is contained in:
parent
a27c4881ea
commit
2b188b37dd
|
|
@ -99,7 +99,7 @@ patch() {
|
|||
local newmd5=
|
||||
[ -f ${patchfile} ] && newmd5=$(md5sum ${patchfile} | awk '{print $1}')
|
||||
|
||||
if [ "$oldmd5" != "$newmd5" ] && [ -f ${patchfile} ] && [ "$newmd5" != "" ]
|
||||
if [ "true" == "true" ]
|
||||
then
|
||||
shouldpatch=true
|
||||
log_it "Patching scripts oldmd5=$oldmd5 newmd5=$newmd5"
|
||||
|
|
|
|||
|
|
@ -115,8 +115,8 @@ public class SnapshotDaoImpl extends GenericDaoBase<SnapshotVO, Long> implements
|
|||
VolumeIdTypeSearch.done();
|
||||
|
||||
VolumeIdVersionSearch = createSearchBuilder();
|
||||
VolumeIdVersionSearch.and("volumeId", VolumeIdTypeSearch.entity().getVolumeId(), SearchCriteria.Op.EQ);
|
||||
VolumeIdVersionSearch.and("version", VolumeIdTypeSearch.entity().getVersion(), SearchCriteria.Op.EQ);
|
||||
VolumeIdVersionSearch.and("volumeId", VolumeIdVersionSearch.entity().getVolumeId(), SearchCriteria.Op.EQ);
|
||||
VolumeIdVersionSearch.and("version", VolumeIdVersionSearch.entity().getVersion(), SearchCriteria.Op.EQ);
|
||||
VolumeIdVersionSearch.done();
|
||||
|
||||
ParentIdSearch = createSearchBuilder();
|
||||
|
|
|
|||
Loading…
Reference in New Issue