From 207d8e7eb7831f5c245c11d9684248f31c609326 Mon Sep 17 00:00:00 2001 From: kevgliss Date: Mon, 14 Nov 2022 10:25:34 -0800 Subject: [PATCH] Fixes issue with severity and report confirmation message (#2698) --- src/dispatch/plugins/dispatch_slack/messaging.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/dispatch/plugins/dispatch_slack/messaging.py b/src/dispatch/plugins/dispatch_slack/messaging.py index 71b24235d578..1e91d171d05a 100644 --- a/src/dispatch/plugins/dispatch_slack/messaging.py +++ b/src/dispatch/plugins/dispatch_slack/messaging.py @@ -147,7 +147,7 @@ def create_command_run_in_conversation_where_bot_not_present_message( def create_incident_reported_confirmation_message( - title: str, description: str, incident_type: str, incident_severity: str, incident_priority: str + title: str, description: str, incident_type: str, incident_priority: str ): """Creates an incident reported confirmation message.""" return [ @@ -174,10 +174,6 @@ def create_incident_reported_confirmation_message( "type": "section", "text": {"type": "mrkdwn", "text": f"*Incident Type*: {incident_type}"}, }, - { - "type": "section", - "text": {"type": "mrkdwn", "text": f"*Incident Severity*: {incident_severity}"}, - }, { "type": "section", "text": {"type": "mrkdwn", "text": f"*Incident Priority*: {incident_priority}"},