Bug 12757: Clear cluster GUID during cluster delete

Status 12757: resolved fixed
Reviewed-By: Abhi
This commit is contained in:
kishan 2011-12-29 16:33:03 +05:30
parent 8173474a42
commit ccc4cd820f
1 changed files with 1 additions and 0 deletions

View File

@ -227,6 +227,7 @@ public class ClusterDaoImpl extends GenericDaoBase<ClusterVO, Long> implements C
txn.start();
ClusterVO cluster = createForUpdate();
cluster.setName(null);
cluster.setGuid(null);
update(id, cluster);