File tree 1 file changed +4
-0
lines changed
keep/providers/squadcast_provider
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -114,6 +114,7 @@ def _create_incidents(
114
114
headers : dict ,
115
115
message : str ,
116
116
description : str ,
117
+ tags : dict = {},
117
118
priority : str = "" ,
118
119
status : str = "" ,
119
120
event_id : str = "" ,
@@ -123,6 +124,7 @@ def _create_incidents(
123
124
{
124
125
"message" : message ,
125
126
"description" : description ,
127
+ "tags" : tags ,
126
128
"priority" : priority ,
127
129
"status" : status ,
128
130
"event_id" : event_id ,
@@ -153,6 +155,7 @@ def _notify(
153
155
description : str = "" ,
154
156
incident_id : str = "" ,
155
157
priority : str = "" ,
158
+ tags : dict = {},
156
159
status : str = "" ,
157
160
event_id : str = "" ,
158
161
attachments : list = [],
@@ -187,6 +190,7 @@ def _notify(
187
190
headers = headers ,
188
191
message = message ,
189
192
description = description ,
193
+ tags = tags ,
190
194
priority = priority ,
191
195
status = status ,
192
196
event_id = event_id ,
You can’t perform that action at this time.
0 commit comments