Fixed typos in printouts

This commit is contained in:
Magnus Edenhill 2014-08-26 07:47:22 +02:00
parent 21c30290b6
commit 761ecb859f
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ metadata.request.timeout.ms | * | 60000 | Non-topic reque
topic.metadata.refresh.interval.ms | * | 10000 | Topic metadata refresh interval in milliseconds. The metadata is automatically refreshed on error and connect. Use -1 to disable the intervalled refresh.
topic.metadata.refresh.fast.cnt | * | 10 | When a topic looses its leader this number of metadata requests are sent with `topic.metadata.refresh.fast.interval.ms` interval disregarding the `topic.metadata.refresh.interval.ms` value. This is used to recover quickly from transitioning leader brokers.
topic.metadata.refresh.fast.interval.ms | * | 250 | See `topic.metadata.refresh.fast.cnt` description
topic.metadata.refresh.sparse | * | false | Sparse in metadata requests (consumes less network bandwidth)
topic.metadata.refresh.sparse | * | false | Sparse metadata requests (consumes less network bandwidth)
debug | * | | A comma-separated list of debug contexts to enable: all,generic,broker,topic,metadata,producer,queue,msg,protocol
socket.timeout.ms | * | 60000 | Timeout for network requests.
socket.send.buffer.bytes | * | 0 | Broker socket send buffer size. System default is used if 0.

View File

@ -1100,7 +1100,7 @@ static void rd_kafka_metadata_refresh_cb (rd_kafka_t *rk, void *arg) {
if (rk->rk_conf.metadata_refresh_sparse)
rd_kafka_broker_metadata_req(rkb, 0 /* known topics */, NULL,
NULL, "sparse peridioc refresh");
NULL, "sparse periodic refresh");
else
rd_kafka_broker_metadata_req(rkb, 1 /* all topics */, NULL,
NULL, "periodic refresh");