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
{{ message }}
This repository has been archived by the owner on May 26, 2023. It is now read-only.
FYI: I just released a go-codecproduction release - version 1.1.7 (finally)
First, it resolves the go.mod impasse where we had different import paths (github.com/ugorji/go and github.com/ugorji/go/codec) causing the ambiguous import error.
This is now fixed by leveraging import cycles to ensure that either one works well and resolves to the same bits.
Please let me know if seeing any issues. If all is well over the next few days, I will close this github issue.
ambiguous import:
error while building/installing withGO111MODULE=on
:It seems like edgexfoundry/go-mod-core-contracts is dependent on
github.com/ugorji/go v1.1.4
.And cobra is dependent on
github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8
.This error breaks building with
GO111MODULE=on
. The current workaround is to build and install withGO111MODULE=off
.The text was updated successfully, but these errors were encountered: