Fix auto scale create with fix date without recurrence (#47186)
* Fix auto scale create with fix date without recurrence * fix indent
This commit is contained in:
parent
1be69cd69c
commit
9258ffa478
1 changed files with 3 additions and 2 deletions
|
@ -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…
Reference in a new issue