Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix client block until timeout when provider return with PackageResponse_Exception #926

Merged
merged 22 commits into from
Dec 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
f60732d
Bump go.uber.org/atomic from 1.6.0 to 1.7.0
dependabot[bot] Nov 9, 2020
c00095a
Bump github.com/prometheus/client_golang from 1.1.0 to 1.8.0
dependabot[bot] Nov 9, 2020
eb3be01
Bump github.com/magiconair/properties from 1.8.1 to 1.8.4
dependabot[bot] Nov 9, 2020
bc3b390
Merge pull request #861 from apache/dependabot/go_modules/github.com/…
AlexStocks Nov 10, 2020
a3e7d8c
Merge pull request #860 from apache/dependabot/go_modules/github.com/…
fangyincheng Nov 12, 2020
1a99d45
Merge pull request #859 from apache/dependabot/go_modules/go.uber.org…
fangyincheng Nov 12, 2020
bb14a27
Bump github.com/fsnotify/fsnotify from 1.4.7 to 1.4.9
dependabot[bot] Nov 12, 2020
8c9b8a8
Merge pull request #870 from apache/dependabot/go_modules/github.com/…
AlexStocks Nov 12, 2020
c064884
Bump github.com/emicklei/go-restful/v3 from 3.0.0 to 3.4.0
dependabot[bot] Nov 12, 2020
87da450
Merge pull request #875 from apache/dependabot/go_modules/github.com/…
AlexStocks Nov 16, 2020
6b9419a
Bump github.com/dubbogo/gost from 1.9.2 to 1.9.5
dependabot[bot] Nov 16, 2020
23f367c
Merge pull request #881 from apache/dependabot/go_modules/github.com/…
AlexStocks Nov 19, 2020
f94fb7b
Merge branch 'develop'
Nov 22, 2020
98977d0
Merge branch 'develop'
AlexStocks Nov 24, 2020
1afdcc2
build(deps): bump gopkg.in/yaml.v2 from 2.3.0 to 2.4.0
dependabot[bot] Nov 26, 2020
9d3fefd
build(deps): bump github.com/mitchellh/mapstructure from 1.3.3 to 1.4.0
dependabot[bot] Nov 27, 2020
8dbf73b
Merge pull request #896 from apache/dependabot/go_modules/gopkg.in/ya…
zouyx Nov 30, 2020
4b0bdfb
Merge pull request #897 from apache/dependabot/go_modules/github.com/…
Patrick0308 Dec 1, 2020
9bf076c
Merge branch 'master' of https://github.com/apache/dubbo-go into develop
AlexStocks Dec 4, 2020
1156b92
Merge branch 'develop' of https://github.com/apache/dubbo-go into dev…
AlexStocks Dec 9, 2020
37a11a1
try to fix time out error
wenxuwan Dec 11, 2020
9e0fd61
refact code
wenxuwan Dec 11, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ require (
github.com/coreos/etcd v3.3.25+incompatible
github.com/creasty/defaults v1.5.1
github.com/dubbogo/go-zookeeper v1.0.2
github.com/dubbogo/gost v1.9.2
github.com/dubbogo/gost v1.9.5
github.com/elazarl/go-bindata-assetfs v1.0.0 // indirect
github.com/emicklei/go-restful/v3 v3.0.0
github.com/emicklei/go-restful/v3 v3.4.0
github.com/frankban/quicktest v1.4.1 // indirect
github.com/fsnotify/fsnotify v1.4.7
github.com/fsnotify/fsnotify v1.4.9
github.com/go-co-op/gocron v0.1.1
github.com/go-resty/resty/v2 v2.3.0
github.com/golang/mock v1.4.4
Expand All @@ -27,22 +27,22 @@ require (
github.com/hashicorp/vault/api v1.0.5-0.20191108163347-bdd38fca2cff // indirect
github.com/hashicorp/vault/sdk v0.1.14-0.20191112033314-390e96e22eb2
github.com/jinzhu/copier v0.0.0-20190625015134-976e0346caa8
github.com/magiconair/properties v1.8.1
github.com/mitchellh/mapstructure v1.3.3
github.com/magiconair/properties v1.8.4
github.com/mitchellh/mapstructure v1.4.0
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
github.com/nacos-group/nacos-sdk-go v1.0.1
github.com/opentracing/opentracing-go v1.2.0
github.com/pierrec/lz4 v2.2.6+incompatible // indirect
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.1.0
github.com/prometheus/client_golang v1.8.0
github.com/satori/go.uuid v1.2.1-0.20181028125025-b2ce2384e17b
github.com/stretchr/objx v0.2.0 // indirect
github.com/stretchr/testify v1.6.1
github.com/zouyx/agollo/v3 v3.4.5
go.uber.org/atomic v1.6.0
go.uber.org/atomic v1.7.0
go.uber.org/zap v1.16.0
google.golang.org/grpc v1.26.0
gopkg.in/yaml.v2 v2.2.8
gopkg.in/yaml.v2 v2.4.0
k8s.io/api v0.16.9
k8s.io/apimachinery v0.16.9
k8s.io/client-go v0.16.9
Expand Down
Loading