Skip to content

Commit 38664d7

Browse files
lunnysapk
authored andcommitted
upgrade levelqueue to 0.1.0 (#9192) (#9199)
1 parent c4e52d2 commit 38664d7

File tree

14 files changed

+142
-40
lines changed

14 files changed

+142
-40
lines changed

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ go 1.13
44

55
require (
66
cloud.google.com/go v0.45.0 // indirect
7+
gitea.com/lunny/levelqueue v0.1.0
78
gitea.com/macaron/binding v0.0.0-20190822013154-a5f53841ed2b
89
gitea.com/macaron/cache v0.0.0-20190822004001-a6e7fee4ee76
910
gitea.com/macaron/captcha v0.0.0-20190822015246-daa973478bae
@@ -67,7 +68,6 @@ require (
6768
github.com/lafriks/xormstore v1.3.1
6869
github.com/lib/pq v1.2.0
6970
github.com/lunny/dingtalk_webhook v0.0.0-20171025031554-e3534c89ef96
70-
github.com/lunny/levelqueue v0.0.0-20190217115915-02b525a4418e
7171
github.com/mailru/easyjson v0.7.0 // indirect
7272
github.com/markbates/goth v1.56.0
7373
github.com/mattn/go-isatty v0.0.7

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ cloud.google.com/go v0.45.0 h1:bALuGBSgE+BD4rxsopAYlqjcwqcQtye6pWG4bC3N/k0=
1212
cloud.google.com/go v0.45.0/go.mod h1:452BcPOeI9AZfbvDw0Tbo7D32wA+WX9WME8AZwMEDZU=
1313
cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o=
1414
cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE=
15+
gitea.com/lunny/levelqueue v0.1.0 h1:7wMk0VH6mvKN6vZEZCy9nUDgRmdPLgeNrm1NkW8EHNk=
16+
gitea.com/lunny/levelqueue v0.1.0/go.mod h1:G7hVb908t0Bl0uk7zGSg14fyzNtxgtD9Shf04wkMK7s=
1517
gitea.com/macaron/binding v0.0.0-20190822013154-a5f53841ed2b h1:vXt85uYV17KURaUlhU7v4GbCShkqRZDSfo0TkC0YCjQ=
1618
gitea.com/macaron/binding v0.0.0-20190822013154-a5f53841ed2b/go.mod h1:Cxadig6POWpPYYSfg23E7jo35Yf0yvsdC1lifoKWmPo=
1719
gitea.com/macaron/cache v0.0.0-20190822004001-a6e7fee4ee76 h1:mMsMEg90c5KXQgRWsH8D6GHXfZIW1RAe5S9VYIb12lM=
@@ -391,8 +393,6 @@ github.com/lib/pq v1.2.0 h1:LXpIM/LZ5xGFhOpXAQUIMM1HdyqzVYM13zNdjCEEcA0=
391393
github.com/lib/pq v1.2.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo=
392394
github.com/lunny/dingtalk_webhook v0.0.0-20171025031554-e3534c89ef96 h1:uNwtsDp7ci48vBTTxDuwcoTXz4lwtDTe7TjCQ0noaWY=
393395
github.com/lunny/dingtalk_webhook v0.0.0-20171025031554-e3534c89ef96/go.mod h1:mmIfjCSQlGYXmJ95jFN84AkQFnVABtKuJL8IrzwvUKQ=
394-
github.com/lunny/levelqueue v0.0.0-20190217115915-02b525a4418e h1:GSprKUrG9wNgwQgROvjPGXmcZrg4OLslOuZGB0uJjx8=
395-
github.com/lunny/levelqueue v0.0.0-20190217115915-02b525a4418e/go.mod h1:rQZVENnBOiVakCs97XvclbwJRTAv77CRFWcYVNDkVf8=
396396
github.com/lunny/log v0.0.0-20160921050905-7887c61bf0de h1:nyxwRdWHAVxpFcDThedEgQ07DbcRc5xgNObtbTp76fk=
397397
github.com/lunny/log v0.0.0-20160921050905-7887c61bf0de/go.mod h1:3q8WtuPQsoRbatJuy3nvq/hRSvuBJrHHr+ybPPiNvHQ=
398398
github.com/lunny/nodb v0.0.0-20160621015157-fc1ef06ad4af h1:UaWHNBdukWrSG3DRvHFR/hyfg681fceqQDYVTBncKfQ=

modules/indexer/issues/queue_disk.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010

1111
"code.gitea.io/gitea/modules/log"
1212

13-
"github.com/lunny/levelqueue"
13+
"gitea.com/lunny/levelqueue"
1414
)
1515

1616
var (

vendor/gitea.com/lunny/levelqueue/.drone.yml

+23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/gitea.com/lunny/levelqueue/README.md

+28
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/gitea.com/lunny/levelqueue/go.mod

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/lunny/levelqueue/go.sum renamed to vendor/gitea.com/lunny/levelqueue/go.sum

+20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/lunny/levelqueue/queue.go renamed to vendor/gitea.com/lunny/levelqueue/queue.go

+57-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/lunny/levelqueue/README.md

-23
This file was deleted.

vendor/github.com/lunny/levelqueue/go.mod

-3
This file was deleted.

vendor/modules.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# cloud.google.com/go v0.45.0
22
cloud.google.com/go/compute/metadata
3+
# gitea.com/lunny/levelqueue v0.1.0
4+
gitea.com/lunny/levelqueue
35
# gitea.com/macaron/binding v0.0.0-20190822013154-a5f53841ed2b
46
gitea.com/macaron/binding
57
# gitea.com/macaron/cache v0.0.0-20190822004001-a6e7fee4ee76
@@ -290,8 +292,6 @@ github.com/lib/pq/oid
290292
github.com/lib/pq/scram
291293
# github.com/lunny/dingtalk_webhook v0.0.0-20171025031554-e3534c89ef96
292294
github.com/lunny/dingtalk_webhook
293-
# github.com/lunny/levelqueue v0.0.0-20190217115915-02b525a4418e
294-
github.com/lunny/levelqueue
295295
# github.com/lunny/log v0.0.0-20160921050905-7887c61bf0de
296296
github.com/lunny/log
297297
# github.com/lunny/nodb v0.0.0-20160621015157-fc1ef06ad4af

0 commit comments

Comments
 (0)