diff --git a/service/incident/impl/incident_service_v2.go b/service/incident/impl/incident_service_v2.go index 6119765..14f490d 100644 --- a/service/incident/impl/incident_service_v2.go +++ b/service/incident/impl/incident_service_v2.go @@ -1445,7 +1445,7 @@ func (i *IncidentServiceV2) UpdateSeverityId( err = json.Unmarshal(reportingTeam.TeamSeverityUpdateRule, &teamSeverityUpdateRule) if err == nil { if !isValidRequestForUpdateSeverity(teamSeverityUpdateRule, reportingTeam, userEntity.ToDTO()) { - _, err := i.slackService.PostMessageByChannelID("`Please ask team who created the incident to reduce the severity or ask department head`", false, incidentEntity.SlackChannel) + _, err := i.slackService.PostMessageByChannelID("`Please ask the department head to reduce severity`", false, incidentEntity.SlackChannel) if err != nil { logger.Error(fmt.Sprintf("%s Severity changes not allowed", updateLogTag), zap.Error(err)) }