You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: update CreateTopics API stage descriptions to use version 6
Update all stage descriptions for the CreateTopics API to reference version 6 instead of version 7. This includes adjustments to the interactive protocol inspector links and the testing procedures to ensure consistency across all stages. The changes clarify the expected request and response structures for the API.
In this stage, you'll only need to add an entry for the `CreateTopics` API to the APIVersions response you implemented in earlier stages. This will let the client know that the broker supports the `CreateTopics` API. We'll get to responding to `CreateTopics` requests in later stages.
In this stage, you'll need to implement basic topic name validation without needing to check against existing topics or system topics. You can hard code the error response for invalid topic names in this stage.
21
21
@@ -27,7 +27,7 @@ The tester will execute your program like this:
27
27
./your_program.sh
28
28
```
29
29
30
-
It'll then connect to your server on port 9092 and send a `CreateTopics` (v7) request with an invalid topic name.
30
+
It'll then connect to your server on port 9092 and send a `CreateTopics` (v6) request with an invalid topic name.
0 commit comments