-
Notifications
You must be signed in to change notification settings - Fork 601
New issue
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
not enough arguments in call to uuid.Must #70
Comments
I am experiencing the same sort of behavior. |
See #66 |
@anks333 i think you would get this error only if you are using the api from master but have 1.2 installed in vendor/
|
I have a similar question.
but, if set
|
It's will ok! @anks333 |
@mjrao Thank you so much! |
I tried several of the options in this thread, but none worked for me on go 1.12. |
go get github.com/satori/go.uuid@master will work |
Thanks Bheem @bheemreddy181 |
Thanks @bheemreddy181 |
Thanks, good job!! But why it can be work?“github.com/koding/kite” ==> this project also refers to the "master" with dep: [[constraint]]
|
not enough arguments in call to uuid.Must
have (uuid.UUID)
want (uuid.UUID, error)
if I install the package using dep
dep ensure -add github.com/satori/go.uuid
, then Must function expects two arguments.uuid := uuid.Must(uuid.NewV4(), errors.New("UUID Error"))
but if I install the package using
go get github.com/satori/go.uuid
, then Must function expects only 1 argumentuuid := uuid.Must(uuid.NewV4())
In both the cases 1.2 version is getting installed
The text was updated successfully, but these errors were encountered: