nodece commented on issue #1466: URL: https://github.com/apache/pulsar-client-go/issues/1466#issuecomment-3981837661
It works fine on [email protected]: Test case: ```go func TestServiceURL(t *testing.T) { t.Log(runtime.Version() + " " + runtime.GOOS + "/" + runtime.GOARCH) serviceURL := "pulsar://host1:1234,host2:1234,host3:1234" t.Log(serviceURL) c, err := NewClient(ClientOptions{ URL: serviceURL, }) require.NoError(t, err) require.NotNil(t, c) c.Close() } ``` Log: ``` === RUN TestServiceURL client_impl_test.go:1238: go1.26.0 darwin/amd64 client_impl_test.go:1240: pulsar://host1:1234,host2:1234,host3:1234 --- PASS: TestServiceURL (0.00s) PASS ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
