File tree Expand file tree Collapse file tree 7 files changed +9
-9
lines changed Expand file tree Collapse file tree 7 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ import (
14
14
"github.com/google/uuid"
15
15
"go.mongodb.org/mongo-driver/bson/primitive"
16
16
17
+ "github.com/Subomi/taskq/v3"
17
18
"github.com/frain-dev/convoy/util"
18
19
"github.com/go-redis/redis/v8"
19
20
log "github.com/sirupsen/logrus"
20
- "github.com/vmihailenco/taskq/v3"
21
21
prefixed "github.com/x-cray/logrus-prefixed-formatter"
22
22
23
23
"github.com/frain-dev/convoy"
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ module github.com/frain-dev/convoy
3
3
go 1.16
4
4
5
5
require (
6
+ github.com/Subomi/taskq/v3 v3.2.7-alpha
6
7
github.com/dgrijalva/jwt-go v3.2.0+incompatible
7
8
github.com/felixge/httpsnoop v1.0.2
8
9
github.com/getkin/kin-openapi v0.78.0
@@ -26,7 +27,6 @@ require (
26
27
github.com/spf13/cobra v1.1.3
27
28
github.com/stretchr/testify v1.7.0
28
29
github.com/swaggo/swag v1.7.3
29
- github.com/vmihailenco/taskq/v3 v3.2.6
30
30
github.com/x-cray/logrus-prefixed-formatter v0.5.2
31
31
github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a // indirect
32
32
go.mongodb.org/mongo-driver v1.7.1
Original file line number Diff line number Diff line change @@ -25,6 +25,8 @@ github.com/PuerkitoBio/purell v1.1.1/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbt
25
25
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 h1:d+Bc7a5rLufV/sSk/8dngufqelfh6jnri85riMAaF/M =
26
26
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 /go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE =
27
27
github.com/Shopify/goreferrer v0.0.0-20181106222321-ec9c9a553398 /go.mod h1:a1uqRtAwp2Xwc6WNPJEufxJ7fx3npB4UV/JOLmbu5I0 =
28
+ github.com/Subomi/taskq/v3 v3.2.7-alpha h1:rD9OERsbQFBfKU5AayvUdtCVeRmxt5NwhNnmju4KEkc =
29
+ github.com/Subomi/taskq/v3 v3.2.7-alpha /go.mod h1:ulD5nIMANNrb8CB/phkd4GcOQ/uU0yuTFKita7BAKbk =
28
30
github.com/ajg/form v1.5.1 /go.mod h1:uL1WgH+h2mgNtvBq0339dVnzXdBETtL2LeUXaIv25UY =
29
31
github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc /go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc =
30
32
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf /go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0 =
@@ -449,8 +451,6 @@ github.com/vmihailenco/msgpack/v5 v5.3.4 h1:qMKAwOV+meBw2Y8k9cVwAy7qErtYCwBzZ2el
449
451
github.com/vmihailenco/msgpack/v5 v5.3.4 /go.mod h1:7xyJ9e+0+9SaZT0Wt1RGleJXzli6Q/V5KbhBonMG9jc =
450
452
github.com/vmihailenco/tagparser/v2 v2.0.0 h1:y09buUbR+b5aycVFQs/g70pqKVZNBmxwAhO7/IwNM9g =
451
453
github.com/vmihailenco/tagparser/v2 v2.0.0 /go.mod h1:Wri+At7QHww0WTrCBeu4J6bNtoV6mEfg5OIWRZA9qds =
452
- github.com/vmihailenco/taskq/v3 v3.2.6 h1:kzBdNU2EqSoI9kj9e1s6lwwcryrkfTe1QKcskbGGgI4 =
453
- github.com/vmihailenco/taskq/v3 v3.2.6 /go.mod h1:sn+Z2Z5MSs1Ar5Z/hNVp2TMeFOpuWlIJRD1dfjB7Rh8 =
454
454
github.com/x-cray/logrus-prefixed-formatter v0.5.2 h1:00txxvfBM9muc0jiLIEAkAcIMJzfthRT6usrui8uGmg =
455
455
github.com/x-cray/logrus-prefixed-formatter v0.5.2 /go.mod h1:2duySbKsL6M18s5GU7VPsoEPHyzalCE06qoARUCeBBE =
456
456
github.com/xdg-go/pbkdf2 v1.0.0 h1:Su7DPu48wXMwC3bs7MCNG+z4FhcyEuz5dlvchbq0B0c =
Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ import (
5
5
"errors"
6
6
"time"
7
7
8
+ "github.com/Subomi/taskq/v3"
9
+ "github.com/Subomi/taskq/v3/redisq"
8
10
"github.com/frain-dev/convoy"
9
11
"github.com/frain-dev/convoy/config"
10
12
"github.com/frain-dev/convoy/queue"
11
13
"github.com/frain-dev/convoy/util"
12
14
"github.com/go-redis/redis/v8"
13
- "github.com/vmihailenco/taskq/v3"
14
- "github.com/vmihailenco/taskq/v3/redisq"
15
15
)
16
16
17
17
type RedisQueue struct {
Original file line number Diff line number Diff line change 1
1
package worker
2
2
3
3
import (
4
+ "github.com/Subomi/taskq/v3"
4
5
"github.com/frain-dev/convoy/queue"
5
6
convoy_redis "github.com/frain-dev/convoy/queue/redis"
6
7
log "github.com/sirupsen/logrus"
7
- "github.com/vmihailenco/taskq/v3"
8
8
)
9
9
10
10
type Cleaner struct {
Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ package worker
3
3
import (
4
4
"context"
5
5
6
+ "github.com/Subomi/taskq/v3"
6
7
"github.com/frain-dev/convoy/queue"
7
8
convoy_redis "github.com/frain-dev/convoy/queue/redis"
8
9
log "github.com/sirupsen/logrus"
9
- "github.com/vmihailenco/taskq/v3"
10
10
)
11
11
12
12
type Producer struct {
Original file line number Diff line number Diff line change 1
1
package task
2
2
3
3
import (
4
+ "github.com/Subomi/taskq/v3"
4
5
"github.com/frain-dev/convoy"
5
6
"github.com/frain-dev/convoy/config"
6
- "github.com/vmihailenco/taskq/v3"
7
7
)
8
8
9
9
func CreateTask (name convoy.TaskName , cfg config.Configuration , handler interface {}) * taskq.Task {
You can’t perform that action at this time.
0 commit comments