Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit 4c46ca3

Browse files
authored
Update README.md
1 parent e068e1e commit 4c46ca3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,22 +42,22 @@ Content-Type: text/plain; charset=UTF-8
4242
Content-Length: 0
4343
```
4444

45-
In that case, with `seed` being 1(an odd number), a message is sent to *li-odd-stream* stream.
45+
In that case, with `seed` being 1(an odd number), a message is sent to `li-stream-odd` stream.
4646

4747
```json
4848
{"uuid": "325439c2-4b4e-45f1-98ee-75bc9e14d877", "seed": 1}
4949
```
5050

51-
If `seed` is even, e.g. 2,4,6,8 etc, a message with same format is sent to *li-even-stream* stream.
51+
If `seed` is even, e.g. 2,4,6,8 etc, a message with same format is sent to `li-stream-even` stream.
5252

5353
We would like to check if messages are routing to respective streams correctly. If the seed is not a number
5454
the services returns a bad request.
5555

56-
In order to do that, you will need to read messages from both Kinesis Streams(`li-even-stream` and `li-odd-stream`), and verify that the routing works correctly by asserting that the correct request produced a record in the one stream, and did not produce a record in the other.
56+
In order to do that, you will need to read messages from both Kinesis Streams(`li-stream-even` and `li-stream-odd`), and verify that the routing works correctly by asserting that the correct request produced a record in the one stream, and did not produce a record in the other.
5757

5858
To solve the challenge, you will need to quickly research how to read records from a Kinesis Stream, if you haven't used it already.
5959

60-
We recommend that you use standard AWS SDK for any programming language you choose.
60+
We recommend that you use standard AWS SDK for any programming language you choose, e.g [how to read kinesis records with Java](https://docs.aws.amazon.com/streams/latest/dev/developing-consumers-with-sdk.html).
6161

6262
## Running the Route Service Locally
6363

0 commit comments

Comments
 (0)