Kafka: add more error codes

Change-Id: Idcbe44bfe0730e42a30107414a7912a6aa50f411
Reviewed-on: https://code.wireshark.org/review/15757
Petri-Dish: Martin Mathieson <martin.r.mathieson@googlemail.com>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Michael Mann <mmann78@netscape.net>
This commit is contained in:
Martin Mathieson 2016-06-06 14:17:20 -07:00 committed by Michael Mann
parent d3b5e922c2
commit 75731e68e5
1 changed files with 19 additions and 0 deletions

View File

@ -148,6 +148,25 @@ static const value_string kafka_errors[] = {
{ 14, "Offsets Load In Progress" },
{ 15, "Consumer Coordinator Not Available" },
{ 16, "Not Coordinator For Consumer" },
{ 17, "Invalid topic" },
{ 18, "Message batch larger than configured server segment size" },
{ 19, "Not enough in-sync replicas" },
{ 20, "Message(s) written to insufficient number of in-sync replicas" },
{ 21, "Invalid required acks value" },
{ 22, "Specified group generation id is not valid" },
{ 23, "Inconsistent group protocol" },
{ 24, "Invalid group.id" },
{ 25, "Unknown member" },
{ 26, "Invalid session timeout" },
{ 27, "Group rebalance in progress" },
{ 28, "Commit offset data size is not valid" },
{ 29, "Topic authorization failed" },
{ 30, "Group authorization failed" },
{ 31, "Cluster authorization failed" },
{ 32, "Invalid timestamp" },
{ 33, "Unsupported SASL mechanism" },
{ 34, "Illegal SASL state" },
{ 35, "Unuspported version" },
{ 0, NULL }
};