Skip to content

Commit

Permalink
feat: change icon for better visibilty
Browse files Browse the repository at this point in the history
  • Loading branch information
gcharest authored Sep 17, 2024
1 parent a3e5301 commit d11cfb0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ def handle_string_payload(
case "UpptimePayload":
# Temporary fix for Upptime payloads
text = validated_payload.get("text", "")
header_text = "🟥 Web Application Down!"
header_text = "📈 Web Application Down!"
blocks = [
{"type": "section", "text": {"type": "mrkdwn", "text": " "}},
{
Expand Down
2 changes: 1 addition & 1 deletion app/tests/server/test_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ def test_handle_string_payload_with_upptime_payload(validate_string_payload_type
assert response.blocks == [
{"text": {"text": " ", "type": "mrkdwn"}, "type": "section"},
{
"text": {"text": "🟥 Web Application Down!", "type": "plain_text"},
"text": {"text": "📈 Web Application Down!", "type": "plain_text"},
"type": "header",
},
{
Expand Down

0 comments on commit d11cfb0

Please sign in to comment.