mirror of
https://github.com/hibiken/asynq.git
synced 2026-04-26 15:35:55 +03:00
[GH-ISSUE #325] [BUG] github.com/hibiken/asynq/tools v0.0.0-20210902125602-b3ef9e91a9ce build fails #140
Labels
No labels
CLI
bug
designing
documentation
duplicate
enhancement
good first issue
good first issue
help wanted
idea
invalid
investigate
needs-more-info
performance
pr-welcome
pull-request
question
wontfix
work in progress
work in progress
work-around-available
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/asynq#140
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 @lufishggg on GitHub (Sep 14, 2021).
Original GitHub issue: https://github.com/hibiken/asynq/issues/325
Originally assigned to: @hibiken on GitHub.
Describe the bug
Build fails
To Reproduce
Steps to reproduce the behavior (Code snippets if applicable):
Expected behavior
Build success and we can use cli tools.
Screenshots

Environment (please complete the following information):
@crossworth commented on GitHub (Sep 24, 2021):
Hello, sorry for the delay.
You seems to be using redis v7, there was a PR a few days ago that added support for redis v8, maybe updating your redis dependency (if possible), would solve this problem.
Otherwise try using the
v0.18.4version.https://github.com/hibiken/asynq/pull/298
@lufishggg commented on GitHub (Sep 26, 2021):
Try not to build in the repo. Just go to a new directory, init a new go module and go get github.com/hibiken/asynq/tools/asynq
@lufishggg commented on GitHub (Sep 26, 2021):
This might be a bug for go module. Try to update the version of github.com/hibiken/asynq from v0.17.1 to v1.18.5 in the go.mod file of module github.com/hibiken/asynq/tools.
https://github.com/hibiken/asynq/blob/master/tools/go.mod:
github.com/hibiken/asynq v0.17.1 => github.com/hibiken/asynq v0.18.5
@hibiken commented on GitHub (Sep 30, 2021):
@lufishggg Thank you for reporting this issue!
Yes, you're right. We should update that
go.modfile you referenced, we should remove thereplacedirective and use the proper version of asynq.@hibiken commented on GitHub (Oct 3, 2021):
@lufishggg Should be able to download the CLI now since I release a new package version. Let me know if you still run into an issue.
@lufishggg commented on GitHub (Oct 6, 2021):
The problem is solved. Thanks!