Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
DescribeConfigRequest => [EntityType EntityName]
    EntityType => string
	EntityName => string
 
// ConfigEntry is an array. It will be empty if there is an error. ErrorCode will be non-zero in case of error
DescribeConfigResponse => [EntityType EntityName ConfigEntry]
    EntityType => string
    EntityName => string
	ErrorCode => int16
    ConfigEntry => [ConfigKey ConfigValue]
        ConfigKey => string
        ConfigValue => string

Error Codes

We will add these new error codes to the protocol.

Error

Description

Requests
InvalidConfigIf the config key or value used in --alter-config and --delete-config is incorrect, InvalidConfig is returnedAlter
InvalidEntity Either the entityType or entityName is incorrect. Entity Type must be (topics/clients)Alter, Describe

CLI and Interactive Shell

...