Skip to content
This repository was archived by the owner on Jan 15, 2022. It is now read-only.

Commit 6e18706

Browse files
committed
Update modules
1 parent 6370ec1 commit 6e18706

32 files changed

+37
-38
lines changed

v2/broker/amqp/broker.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package amqp
33
import (
44
"fmt"
55
"github.com/gofrs/uuid"
6-
"github.com/spiral/jobs"
6+
"github.com/spiral/jobs/v2"
77
"sync"
88
"sync/atomic"
99
)

v2/broker/amqp/broker_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package amqp
22

33
import (
4-
"github.com/spiral/jobs"
4+
"github.com/spiral/jobs/v2"
55
"github.com/stretchr/testify/assert"
66
"testing"
77
"time"

v2/broker/amqp/consume_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package amqp
22

33
import (
44
"fmt"
5-
"github.com/spiral/jobs"
5+
"github.com/spiral/jobs/v2"
66
"github.com/stretchr/testify/assert"
77
"testing"
88
"time"

v2/broker/amqp/durability_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package amqp
22

33
import (
4-
"github.com/spiral/jobs"
4+
"github.com/spiral/jobs/v2"
55
"github.com/stretchr/testify/assert"
66
"io"
77
"net"

v2/broker/amqp/job.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package amqp
22

33
import (
44
"fmt"
5-
"github.com/spiral/jobs"
5+
"github.com/spiral/jobs/v2"
66
"github.com/streadway/amqp"
77
)
88

v2/broker/amqp/queue.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package amqp
22

33
import (
44
"fmt"
5-
"github.com/spiral/jobs"
5+
"github.com/spiral/jobs/v2"
66
"github.com/streadway/amqp"
77
"os"
88
"sync"

v2/broker/amqp/stat_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package amqp
22

33
import (
4-
"github.com/spiral/jobs"
4+
"github.com/spiral/jobs/v2"
55
"github.com/stretchr/testify/assert"
66
"testing"
77
)

v2/broker/beanstalk/broker.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package beanstalk
22

33
import (
44
"fmt"
5-
"github.com/spiral/jobs"
5+
"github.com/spiral/jobs/v2"
66
"sync"
77
)
88

v2/broker/beanstalk/broker_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package beanstalk
22

33
import (
44
"github.com/beanstalkd/go-beanstalk"
5-
"github.com/spiral/jobs"
5+
"github.com/spiral/jobs/v2"
66
"github.com/stretchr/testify/assert"
77
"testing"
88
"time"

v2/broker/beanstalk/consume_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package beanstalk
22

33
import (
44
"fmt"
5-
"github.com/spiral/jobs"
5+
"github.com/spiral/jobs/v2"
66
"github.com/stretchr/testify/assert"
77
"testing"
88
"time"

0 commit comments

Comments
 (0)