Skip to content
This repository was archived by the owner on Sep 3, 2025. It is now read-only.

Commit e5c5975

Browse files
committed
Fixes issue with severity and report confirmation message
1 parent 11299de commit e5c5975

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/dispatch/plugins/dispatch_slack/messaging.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def create_command_run_in_conversation_where_bot_not_present_message(
147147

148148

149149
def create_incident_reported_confirmation_message(
150-
title: str, description: str, incident_type: str, incident_severity: str, incident_priority: str
150+
title: str, description: str, incident_type: str, incident_priority: str
151151
):
152152
"""Creates an incident reported confirmation message."""
153153
return [
@@ -174,10 +174,6 @@ def create_incident_reported_confirmation_message(
174174
"type": "section",
175175
"text": {"type": "mrkdwn", "text": f"*Incident Type*: {incident_type}"},
176176
},
177-
{
178-
"type": "section",
179-
"text": {"type": "mrkdwn", "text": f"*Incident Severity*: {incident_severity}"},
180-
},
181177
{
182178
"type": "section",
183179
"text": {"type": "mrkdwn", "text": f"*Incident Priority*: {incident_priority}"},

0 commit comments

Comments
 (0)