timeout is using DEFAULT_TIMEOUT value instead of the value from properties file when no -t option is specified
Description
When no timeout -t is specified with the kafka-rpc-topics Karaf command, the timeout value currently erroneously defaults to what I believe is DEFAULT_TIMEOUT. Instead, it should attempt to read the value from Kafka REQUEST_TIMEOUT_MS_CONFIG properties. If it’s not found, then only it should default to DEFAULT_TIMEOUT.
Acceptance / Success Criteria
if timeout is not given explicitly, then it should default to the value that is read from the properties file. If no value is found from the properties file, then it should default to something which seems to be DEFAULT_TIMEOUT. If timeout is given, then it should be assigned to the given value accordingly.
When no timeout
-t
is specified with thekafka-rpc-topics
Karaf command, the timeout value currently erroneously defaults to what I believe isDEFAULT_TIMEOUT
. Instead, it should attempt to read the value from Kafka REQUEST_TIMEOUT_MS_CONFIG properties. If it’s not found, then only it should default toDEFAULT_TIMEOUT
.