pulsar-client-go icon indicating copy to clipboard operation
pulsar-client-go copied to clipboard

[BUG] Execution of go test is blocked

Open Kolo7 opened this issue 2 years ago • 0 comments

Expected behavior

go test ./...

Execute go test correctly, whether it passes or not.

Actual behavior

After executing go test, the command will not complete.

This affects not only the results of executing within this repository, but also go projects that have been introduced to this repository.

(base) [root@iZt pulsar-client-go]# go mod download
(base) [root@iZt pulsar-client-go]# go test ./...
?   	github.com/apache/pulsar-client-go/examples/consumer	[no test files]
?   	github.com/apache/pulsar-client-go/examples/consumer-listener	[no test files]
?   	github.com/apache/pulsar-client-go/examples/producer	[no test files]
?   	github.com/apache/pulsar-client-go/examples/reader	[no test files]
?   	github.com/apache/pulsar-client-go/integration-tests/pb	[no test files]
?   	github.com/apache/pulsar-client-go/oauth2/cache	[no test files]
?   	github.com/apache/pulsar-client-go/oauth2/clock	[no test files]
?   	github.com/apache/pulsar-client-go/oauth2/clock/testing	[no test files]
?   	github.com/apache/pulsar-client-go/oauth2/store	[no test files]
ok  	github.com/apache/pulsar-client-go/oauth2	3.039s
?   	github.com/apache/pulsar-client-go/perf	[no test files]
?   	github.com/apache/pulsar-client-go/pulsar/internal/crypto	[no test files]
?   	github.com/apache/pulsar-client-go/pulsar/internal/pulsar_proto	[no test files]
?   	github.com/apache/pulsar-client-go/pulsar/log	[no test files]
?   	github.com/apache/pulsar-client-go/pulsaradmin	[no test files]

It's a perpetual waiting game.

Steps to reproduce

Pull the repository code and run the command on the master branch.

go test ./...

System configuration

Pulsar version: master or v0.11.0

go version: go1.20.3 linux/amd64 or go1.20.6 darwin/arm64

OS: macOS m2 or linux centOS7

Kolo7 avatar Oct 20 '23 07:10 Kolo7