Fix auto scale create with fix date without recurrence (#47186)

* Fix auto scale create with fix date without  recurrence

* fix indent
pull/31874/merge
Yuwei Zhou 6 years ago committed by Zim Kalinowski
parent 1be69cd69c
commit 9258ffa478

@ -550,8 +550,9 @@ class AzureRMAutoScale(AzureRMModuleBase):
schedule=(RecurrentSchedule(time_zone=p.get('recurrence_timezone'),
days=p.get('recurrence_days'),
hours=p.get('recurrence_hours'),
minutes=p.get('recurrence_mins')))
if p.get('recurrence_frequency') else None)) for p in self.profiles or []]
minutes=p.get('recurrence_mins'))))
if p.get('recurrence_frequency') and p['recurrence_frequency'] != 'None' else None)
for p in self.profiles or []]
notifications = [AutoscaleNotification(email=EmailNotification(**n),
webhooks=[WebhookNotification(service_uri=w) for w in n.get('webhooks') or []])

Loading…
Cancel
Save