Skip to content

Commit c6ba72c

Browse files
Fix tests
1 parent e09d5ef commit c6ba72c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

examples/create_alert.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,11 @@
2929
#
3030
# Find notification channels (you need IDs to create an alert).
3131
#
32-
notify_channels = [ {'type': 'SLACK', 'channel': '#sysdig-demo2-alerts'},
33-
{'type': 'EMAIL', 'emailRecipients': ['kini@sysdig.com']},
32+
notify_channels = [ {'type': 'SLACK', 'channel': 'sysdig-demo2-alerts'},
33+
{'type': 'EMAIL', 'emailRecipients': ['gianluca@sysdig.com']},
3434
{'type': 'SNS', 'snsTopicARNs': ['arn:aws:sns:us-east-1:273107874544:alarms-stg']}
3535
]
36+
3637
res = sdclient.get_notification_ids(notify_channels)
3738
if not res[0]:
3839
print "Could not get IDs and hence not creating the alert: " + res[1]

0 commit comments

Comments
 (0)