We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WARNING: DATA RACE Read at 0x00c0008f0118 by goroutine 33: github.com/uber/athenadriver/go.(*DriverTracer).Scope() /home/user/go/pkg/mod/github.com/uber/[email protected]/go/trace.go:99 +0xfe4 github.com/uber/athenadriver/go.(*SQLConnector).Connect() /home/user/go/pkg/mod/github.com/uber/[email protected]/go/connector.go:112 +0xfb3 database/sql.(*DB).conn() /home/user/Applications/go/src/database/sql/sql.go:1395 +0xb0a database/sql.(*DB).query() /home/user/Applications/go/src/database/sql/sql.go:1732 +0x99 database/sql.(*DB).QueryContext() /home/user/Applications/go/src/database/sql/sql.go:1710 +0xf9
The text was updated successfully, but these errors were encountered:
It seems the error is happening because of concurrent access of Map.
go/config.go We can add mutex to solve this. @henrywoo
Sorry, something went wrong.
No branches or pull requests
WARNING: DATA RACE
Read at 0x00c0008f0118 by goroutine 33:
github.com/uber/athenadriver/go.(*DriverTracer).Scope()
/home/user/go/pkg/mod/github.com/uber/[email protected]/go/trace.go:99 +0xfe4
github.com/uber/athenadriver/go.(*SQLConnector).Connect()
/home/user/go/pkg/mod/github.com/uber/[email protected]/go/connector.go:112 +0xfb3
database/sql.(*DB).conn()
/home/user/Applications/go/src/database/sql/sql.go:1395 +0xb0a
database/sql.(*DB).query()
/home/user/Applications/go/src/database/sql/sql.go:1732 +0x99
database/sql.(*DB).QueryContext()
/home/user/Applications/go/src/database/sql/sql.go:1710 +0xf9
The text was updated successfully, but these errors were encountered: