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
There exist import errors for the below lines
"github.com/openconfig/gnmi/manager/manager"
"github.com/openconfig/gnmi/tunnel/dialer"
gnmi_collector.go:40:2: no required module provides package github.com/openconfig/gnmi/manager/manager; to add it:
go get github.com/openconfig/gnmi/manager/manager
gnmi_collector.go:43:2: no required module provides package github.com/openconfig/gnmi/tunnel/dialer; to add it:
go get github.com/openconfig/gnmi/tunnel/dialer
It should be
"github.com/openconfig/gnmi/manager"
"github.com/openconfig/gnmi/tunnel"
There was similar fix previously, but these two offending lines were added after it. f4fab1e
The text was updated successfully, but these errors were encountered:
There exist import errors for the below lines
"github.com/openconfig/gnmi/manager/manager"
"github.com/openconfig/gnmi/tunnel/dialer"
gnmi_collector.go:40:2: no required module provides package github.com/openconfig/gnmi/manager/manager; to add it:
go get github.com/openconfig/gnmi/manager/manager
gnmi_collector.go:43:2: no required module provides package github.com/openconfig/gnmi/tunnel/dialer; to add it:
go get github.com/openconfig/gnmi/tunnel/dialer
It should be
"github.com/openconfig/gnmi/manager"
"github.com/openconfig/gnmi/tunnel"
There was similar fix previously, but these two offending lines were added after it.
f4fab1e
The text was updated successfully, but these errors were encountered: