mirror of
https://github.com/acme-dns/acme-dns.git
synced 2026-04-27 04:45:48 +03:00
[GH-ISSUE #201] cannot find package "github.com/cenkalti/backoff/v3" #92
Labels
No labels
Documentation
Documentation
bug
enhancement
feature request
feature request
help wanted
pull-request
question
security
security
testing
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/acme-dns#92
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @roncanepa on GitHub (Dec 30, 2019).
Original GitHub issue: https://github.com/acme-dns/acme-dns/issues/201
Hello, I'm new to Go and ran into this when trying to install. I was eventually able to get it to work by manually copying things in place but wanted to report it. Not sure if it's more so on the acme-dns or backoff side, but I imagine that this is supposed to come together differently than how I had to do it.
Go tried to fetch it, as I can see the following in the directory but no v3 dir:
My manual fix was clone backoff elsewhere and manually copy the checked-out v3:
git clone https://github.com/cenkalti/backoff.git /root/backoffcd backoff/git checkout v3mkdir /root/go/src/github.com/cenkalti/backoff/v3cp -R * /root/go/src/github.com/cenkalti/backoff/v3@Elte156 commented on GitHub (Jan 7, 2020):
Running the steps from your manual fix worked. Thanks!
@Elte156 commented on GitHub (Jan 8, 2020):
@roncanepa Were you able to run the
acme-dnsafter installing your fix?I am getting this particular error:
Any ideas?
In that newly created
v3directory I checked out:I'm getting the same error. Do I need to rebuild something after I tested each version of backoff?
I don't know much about GO, wondering if this needs to change to get a newer version?
github.com/joohoi/acme-dns@aa3e7e1b75/go.sum (L40-L41)@joohoi commented on GitHub (Jan 8, 2020):
This should get fixed by the pull request referenced above.
@Elte156 commented on GitHub (Jan 8, 2020):
What did #203 fix?
I'm still getting the missing backoff errors as of right now. Steps to reproduce.
@joohoi commented on GitHub (Jan 8, 2020):
Ah, you are right. I only updated the dependency map. The issue is indeed with the go modules and
go-legodependency. To mitigate the gomodule issue:I'll update the installation instructions in
README.md. Thanks for pointing this out!@Elte156 commented on GitHub (Jan 8, 2020):
Thanks, I'll try it out after your
README.mdupdates.