2
0
mirror of https://github.com/hibiken/asynq.git synced 2025-08-26 23:51:24 +08:00

docs: small fix on semantics

This commit is contained in:
Mohammed Sohail
2024-10-19 10:07:17 +03:00
parent ae478d5b22
commit f4b56498f2

View File

@@ -634,7 +634,7 @@ func NewServerFromRedisClient(c redis.UniversalClient, cfg Config) *Server {
// If the returned error is SkipRetry or an error wraps SkipRetry, retry is
// skipped and the task will be immediately archived instead.
//
// One exception to this rule is when ProcessTask returns a RevokeTask error.
// Another exception to this rule is when ProcessTask returns a RevokeTask error.
// If the returned error is RevokeTask or an error wraps RevokeTask, the task
// will not be retried or archived.
type Handler interface {