Skip to content

Commit

Permalink
fix(confluent-kafka): Removed non relevant argument in poll
Browse files Browse the repository at this point in the history
  • Loading branch information
javferrod committed May 20, 2023
1 parent 3a31f6b commit 49b65c5
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -176,10 +176,10 @@ def test_poll(self) -> None:
)
span_list = self.memory_exporter.clear()
consumer = instrumentation.instrument_consumer(consumer)
consumer.poll(1)
consumer.poll(1)
consumer.poll(1)
consumer.poll(1)
consumer.poll()
consumer.poll()
consumer.poll()
consumer.poll()

span_list = self.memory_exporter.get_finished_spans()
self._compare_spans(span_list, expected_spans)
Expand Down

0 comments on commit 49b65c5

Please sign in to comment.