From 121c413aba2040e75cc9a58cdc93e7383d8c8326 Mon Sep 17 00:00:00 2001 From: Jah-yee <166608075+Jah-yee@users.noreply.github.com> Date: Fri, 17 Jul 2026 11:55:22 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20correct=20suceeded=E2=86=92succeeded=20t?= =?UTF-8?q?ypo=20in=20print=20statement=20(producer=5Fperformance.py=20lin?= =?UTF-8?q?e=2077)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- kafka/benchmarks/producer_performance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kafka/benchmarks/producer_performance.py b/kafka/benchmarks/producer_performance.py index 4a83d12cc..eae9ee9a8 100644 --- a/kafka/benchmarks/producer_performance.py +++ b/kafka/benchmarks/producer_performance.py @@ -74,7 +74,7 @@ def _benchmark(): count_failure += 1 else: raise ValueError(r) - print("%d suceeded, %d failed" % (count_success, count_failure)) + print("%d succeeded, %d failed" % (count_success, count_failure)) start_time = time.monotonic() _benchmark()