mirror of https://github.com/apache/cloudstack.git
adding some comments around tag edit disabling for service and disk offerings
This commit is contained in:
parent
476ed64f6b
commit
3681991b38
|
|
@ -1277,6 +1277,8 @@ public class ConfigurationManagerImpl implements ConfigurationManager, Configura
|
|||
if (domainId != null){
|
||||
offering.setDomainId(domainId);
|
||||
}
|
||||
|
||||
//Note: tag editing commented out for now; keeping the code intact, might need to re-enable in next releases
|
||||
// if (tags != null)
|
||||
// {
|
||||
// if (tags.trim().isEmpty() && offeringHandle.getTags() == null)
|
||||
|
|
@ -1380,7 +1382,8 @@ public class ConfigurationManagerImpl implements ConfigurationManager, Configura
|
|||
if (domainId != null){
|
||||
diskOffering.setDomainId(domainId);
|
||||
}
|
||||
|
||||
|
||||
//Note: tag editing commented out for now;keeping the code intact, might need to re-enable in next releases
|
||||
// if (tags != null)
|
||||
// {
|
||||
// if (tags.trim().isEmpty() && diskOfferingHandle.getTags() == null)
|
||||
|
|
|
|||
Loading…
Reference in New Issue