Skip to content

Commit

Permalink
chore: fix kafka parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
hcdias committed Oct 17, 2023
1 parent 97f2e19 commit 73a07d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TopicHandler/ConfigOptions/Consumer.php
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public function toArray(): array
'auto_commit' => $this->isAutoCommit(),
'commit_async' => $this->isCommitASync(),
'offset_reset' => $this->getOffsetReset(),
'max_poll_interval' => $this->getMaxPollInterval(),
'max_poll_interval_ms' => $this->getMaxPollInterval(),
];

if ($avroSchema = $this->getAvroSchema()) {
Expand Down

0 comments on commit 73a07d7

Please sign in to comment.