From d84845bff90a4c8d6d45fb655f0da1705cf03cef Mon Sep 17 00:00:00 2001 From: Shu Yang Date: Tue, 4 Mar 2025 17:26:40 -0800 Subject: [PATCH] Update part12b.md the "/statistics" path is within the "/todos" path if I am not mistaken? because I made the GET "/statistics" path it within the todos.js --- src/content/12/en/part12b.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/12/en/part12b.md b/src/content/12/en/part12b.md index cbf5cb9207..6abb9066b8 100644 --- a/src/content/12/en/part12b.md +++ b/src/content/12/en/part12b.md @@ -857,7 +857,7 @@ If the application does not behave as expected, direct access to the database ma - Find the key you used with _[KEYS *](https://redis.io/commands/keys)_ - Check the value of the key with the command [GET](https://redis.io/commands/get) - Set the value of the counter to 9001, find the right command from [here](https://redis.io/commands/) -- Make sure that the new value works by refreshing the page http://localhost:3000/statistics +- Make sure that the new value works by refreshing the page http://localhost:3000/todos/statistics - Create a new todo with Postman and ensure from redis-cli that the counter has increased accordingly - Delete the key from the cli and ensure that the counter works when new todos are added