Skip to content
This repository has been archived by the owner on Dec 18, 2024. It is now read-only.

Commit

Permalink
Replace the emoji in an error message
Browse files Browse the repository at this point in the history
  • Loading branch information
jiakai-li committed Sep 9, 2024
1 parent 7b82b8c commit ec09772
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: actions/checkout@v3
- name: Run end-to-end tests
run: >
docker-compose --profile testing up
docker compose --profile testing up
--build
--exit-code-from test
- name: Login to Docker Hub
Expand Down
2 changes: 1 addition & 1 deletion web/src/page_tracker/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def index():
page_views = redis().incr("page_views")
except RedisError:
app.logger.exception("Redis error")
return "Sorry, something went wrong \N{pensive face}", 500
return "Sorry, something went wrong \N{thinking face}", 500
else:
return f"This page has been viewed {page_views} times"

Expand Down

0 comments on commit ec09772

Please sign in to comment.