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
Hello, i'm trying to go install github.com/free/sql_exporter/cmd/[email protected] but it fails with:
go: github.com/free/sql_exporter/cmd/sql_exporter imports
github.com/free/sql_exporter imports
github.com/kshvakov/clickhouse: github.com/kshvakov/[email protected]: parsing go.mod:
module declares its path as: github.com/ClickHouse/clickhouse-go
but was required as: github.com/kshvakov/clickhouse
whereas go install github.com/free/sql_exporter/cmd/sql_exporter@latest works fine, but i would prefer to use a release tag/version, instead. I was wondering why 0.5 and latest differ though... I see that the fix was applied in:
7ead955 2019-11-26 10:49:59 Sergei Zyubin Update dependencies (#48)
so about 10 months after the 0.5 tag was created, with the following change:
+ _ "github.com/ClickHouse/clickhouse-go" // register the ClickHouse driver
- _ "github.com/kshvakov/clickhouse" // register the ClickHouse driver
would it be possible to create a new tag with that fix in? and not sure if i'm grasping at straws here, but might you know why go install 0.5 downloads a version from 2019-01-14 where as go install latest downloads one from 2019-11-27? (i would not mind using latest in this case, but it would be troublesome in that i would not know when it changes...)
The text was updated successfully, but these errors were encountered:
Hello, i'm trying to
go install github.com/free/sql_exporter/cmd/[email protected]
but it fails with:whereas
go install github.com/free/sql_exporter/cmd/sql_exporter@latest
works fine, but i would prefer to use a release tag/version, instead. I was wondering why 0.5 and latest differ though... I see that the fix was applied in:so about 10 months after the 0.5 tag was created, with the following change:
would it be possible to create a new tag with that fix in? and not sure if i'm grasping at straws here, but might you know why
go install 0.5
downloads a version from 2019-01-14 where asgo install latest
downloads one from 2019-11-27? (i would not mind usinglatest
in this case, but it would be troublesome in that i would not know when it changes...)The text was updated successfully, but these errors were encountered: