Merge pull request #1991 from influxdata/noreqsize

fix: Remove bad max.request.size config param
pull/24376/head
kodiakhq[bot] 2021-07-14 12:07:54 +00:00 committed by GitHub
commit d6885760d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -126,7 +126,6 @@ impl KafkaBufferProducer {
let mut cfg = ClientConfig::new();
cfg.set("bootstrap.servers", &conn);
cfg.set("message.timeout.ms", "5000");
cfg.set("max.request.size", "10000000");
let producer: FutureProducer = cfg.create()?;