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
root@c08af7e38ab7:/tmp/foo# go mod init example
go: creating new go.mod: module example
root@c08af7e38ab7:/tmp/foo# go mod tidy
go: finding module for package github.com/Azure/sonic-telemetry
example imports
github.com/Azure/sonic-telemetry: no matching versions for query "latest"
There is also the following line in top level go.mod under sonic-telemetry:
replace github.com/Azure/sonic-mgmt-common => ../sonic-mgmt-common
How is go mod expected to work?
The text was updated successfully, but these errors were encountered:
Any update? Now error is:
root@34d6067e4f5c:/tmp# go get -u github.com/Azure/sonic-telemetry/telemetry
go get github.com/Azure/sonic-telemetry/telemetry: no matching versions for query "upgrade"
Example file to illustrate:
`package main
import _ "github.com/Azure/sonic-telemetry"
func main() {}
`
root@c08af7e38ab7:/tmp/foo# go mod init example
go: creating new go.mod: module example
root@c08af7e38ab7:/tmp/foo# go mod tidy
go: finding module for package github.com/Azure/sonic-telemetry
example imports
github.com/Azure/sonic-telemetry: no matching versions for query "latest"
There is also the following line in top level go.mod under sonic-telemetry:
replace github.com/Azure/sonic-mgmt-common => ../sonic-mgmt-common
How is go mod expected to work?
The text was updated successfully, but these errors were encountered: