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 utilizing your Iris router on a project and am now unable to deploy my app because of this error:
remote: vendor/github.com/kataras/go-fs/updater.go:62: not enough arguments in call to client.Repositories.GetLatestRelease
remote: have (string, string)
remote: want (context.Context, string, string)
Reading this issue on go-github, it seems they've made a breaking API change that requires context.Context as the first param on all methods. I'm not sure how you want to handle the context, but I was able to get my local project working by passing a new instance of context from context.TODO() to the call. I can make a PR with what I did for your review.
Thanks!
The text was updated successfully, but these errors were encountered:
Hello,
I'm utilizing your Iris router on a project and am now unable to deploy my app because of this error:
Reading this issue on go-github, it seems they've made a breaking API change that requires
context.Context
as the first param on all methods. I'm not sure how you want to handle the context, but I was able to get my local project working by passing a new instance of context fromcontext.TODO()
to the call. I can make a PR with what I did for your review.Thanks!
The text was updated successfully, but these errors were encountered: