This is an automated email from the ASF dual-hosted git repository. zixuan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/pulsar-client-go.git
The following commit(s) were added to refs/heads/master by this push: new faffa30a Skip very flaky TestMessageSingleRouter for now (#1382) faffa30a is described below commit faffa30a374221f25d7ee8161942c6b98db4d421 Author: Yunze Xu <xyzinfern...@163.com> AuthorDate: Tue Jun 10 10:04:01 2025 +0800 Skip very flaky TestMessageSingleRouter for now (#1382) --- pulsar/producer_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pulsar/producer_test.go b/pulsar/producer_test.go index b8279299..00cb6db5 100644 --- a/pulsar/producer_test.go +++ b/pulsar/producer_test.go @@ -657,6 +657,8 @@ func TestMessageRouter(t *testing.T) { assert.Equal(t, string(msg.Payload()), "hello") } func TestMessageSingleRouter(t *testing.T) { + // TODO: https://github.com/apache/pulsar-client-go/issues/1376 + t.Skip("Skipping TestMessageSingleRouter because it's too flaky") // Create topic with 5 partitions topicAdminURL := "admin/v2/persistent/public/default/my-single-partitioned-topic/partitions" err := httpPut(topicAdminURL, 5)