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
I'm not knowledgeable on Go, but running the go get command gives multiple errors on uuid :
$ go version
go version go1.10.1 linux/amd64
$ go get -u github.com/ops-class/test161/test161
# github.com/ops-class/test161
go/src/github.com/ops-class/test161/build.go:137:30: multiple-value uuid.NewV4() in single-value context
go/src/github.com/ops-class/test161/build.go:624:23: multiple-value uuid.NewV4() in single-value context
go/src/github.com/ops-class/test161/conf.go:166:19: multiple-value uuid.NewV4() in single-value context
go/src/github.com/ops-class/test161/conf.go:395:28: multiple-value uuid.NewV4() in single-value context
go/src/github.com/ops-class/test161/conf.go:494:30: multiple-value uuid.NewV4() in single-value context
go/src/github.com/ops-class/test161/mongopersist.go:214:28: multiple-value uuid.NewV4() in single-value context
go/src/github.com/ops-class/test161/submission.go:313:18: multiple-value uuid.NewV4() in single-value context
go/src/github.com/ops-class/test161/submission.go:620:22: multiple-value uuid.NewV4() in single-value context
go/src/github.com/ops-class/test161/usage.go:56:29: multiple-value uuid.NewV4() in single-value context
A little of Googling led me to satori/go.uuid#66 that seems to be the origin of the bug, so I think the only way to fix it is to either change the included dependency or see how the API has changed, but I'm not sure.
The text was updated successfully, but these errors were encountered:
Hello,
I'm not knowledgeable on Go, but running the go get command gives multiple errors on uuid :
A little of Googling led me to satori/go.uuid#66 that seems to be the origin of the bug, so I think the only way to fix it is to either change the included dependency or see how the API has changed, but I'm not sure.
The text was updated successfully, but these errors were encountered: