You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running make test according to the CONTRIBUTING.md, I found something wrong with TestDisconnected function. The error message is that as newGRPCExporter() was called and then tracesDriver start a connection, it occurs WaitForStateChange error. But after I comment out the otlpgrpc.WithDialOption() used in newGRPCExporter function as a param, the test case could access normally. Please make sure if the otlpgrpc.WithDialOption() configuration should be there in this test function thx.
Environment
OS: MacOS X 10.15.7
Architecture: amd64
Go Version: Both 1.16.3 & 1.15.6
opentelemetry-go version: v0.19.0
Steps To Reproduce
Clone the latest repo as the source code with https://github.com/open-telemetry/opentelemetry-go
Run make test as CONTRIBUTING.md going
See error with panic: test timed out, which is caused by TestDisconnected function in otlp_integration_test.go file
Expected behavior
It could be helpful if all of the test case can run successfully so that other guys could get started faster to contribute. Great honor~!
The text was updated successfully, but these errors were encountered:
$ uname -s -r -v -m -o
Linux 5.12.3-arch1-1 #1 SMP PREEMPT Wed, 12 May 2021 17:54:18 +0000 x86_64 GNU/Linux
$ git rev-parse --verify HEAD
aed458026f8171751eb415f37f2815629fcd0848
$ go version
go version go1.16.4 linux/amd64
$ make test> /dev/null;echo$?
0
The old OTLP exporter (and thus this test) was removed in #1990. Feel free to create a new issue if this error is reproducible with the new exporter implementation.
Description
When running
make test
according to theCONTRIBUTING.md
, I found something wrong withTestDisconnected
function. The error message is that as newGRPCExporter() was called and thentracesDriver
start a connection, it occurs WaitForStateChange error. But after I comment out theotlpgrpc.WithDialOption()
used innewGRPCExporter
function as a param, the test case could access normally. Please make sure if theotlpgrpc.WithDialOption()
configuration should be there in this test function thx.Environment
Steps To Reproduce
https://github.com/open-telemetry/opentelemetry-go
make test
asCONTRIBUTING.md
goingTestDisconnected
function inotlp_integration_test.go
fileExpected behavior
It could be helpful if all of the test case can run successfully so that other guys could get started faster to contribute. Great honor~!
The text was updated successfully, but these errors were encountered: