We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While building Jaqen, I got the errors:
offers.go:92: multiple-value uuid.NewV4() in single-value context socket.go:93: multiple-value uuid.NewV4() in single-value context
offers.go:92: multiple-value uuid.NewV4() in single-value context
socket.go:93: multiple-value uuid.NewV4() in single-value context
This appears to be due to an API change in the dependency: https://github.com/satori/go.uuid NewV4() now returns an additional error value, changed in commit satori/go.uuid@0ef6afb
Build works when you change those two lines to accept a second value, for example: id, _ := uuid.NewV4()
id, _ := uuid.NewV4()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
While building Jaqen, I got the errors:
offers.go:92: multiple-value uuid.NewV4() in single-value context
socket.go:93: multiple-value uuid.NewV4() in single-value context
This appears to be due to an API change in the dependency: https://github.com/satori/go.uuid
NewV4() now returns an additional error value, changed in commit satori/go.uuid@0ef6afb
Build works when you change those two lines to accept a second value, for example:
id, _ := uuid.NewV4()
The text was updated successfully, but these errors were encountered: