-
Notifications
You must be signed in to change notification settings - Fork 932
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 3.0 ci problem #1188
Fix 3.0 ci problem #1188
Conversation
Codecov Report
@@ Coverage Diff @@
## 3.0 #1188 +/- ##
==========================================
- Coverage 59.53% 56.61% -2.92%
==========================================
Files 259 254 -5
Lines 12737 12485 -252
==========================================
- Hits 7583 7069 -514
- Misses 4199 4536 +337
+ Partials 955 880 -75
Continue to review full report at Codecov.
|
@@ -51,6 +50,7 @@ require ( | |||
github.com/stretchr/objx v0.2.0 // indirect | |||
github.com/stretchr/testify v1.7.0 | |||
github.com/zouyx/agollo/v3 v3.4.5 | |||
go.etcd.io/etcd v0.0.0-20200402134248-51bdeb39e698 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
suggest use version+incompatible, like v3.3.25+incompatible
@@ -169,7 +169,7 @@ func (invoker *failbackClusterInvoker) Invoke(ctx context.Context, invocation pr | |||
logger.Errorf("Failback to invoke the method %v in the service %v, wait for retry in background. Ignored exception: %v.\n", | |||
methodName, url.Service(), result.Error().Error()) | |||
// ignore | |||
return &protocol.RPCResult{Err: result.Error()} | |||
return &protocol.RPCResult{} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why delete this err?
* add retry times * Add: add ruubypay to user list. (#1180) * fix import for linter * replace default config string with const value (#1182) * replace default config string with const value * delete some duplicate keys Co-authored-by: dongjianhui <[email protected]> * Fix 3.0 ci problem (#1188) * fix etcd problem * fix metadata report etcd problem * fix nacos & cluster_impl ci problem * fix nacos ci problem * fix zk ci problem * fix zk metadata service urls not found error * fix zk TestAddListenerZookeeperServiceDiscovery * fix zk TestAddListenerZookeeperServiceDiscovery * fix config int to string bug * add retry times * fix import for linter * revert rename etcdv3 Co-authored-by: xianlezheng <[email protected]> Co-authored-by: Mulavar <[email protected]> Co-authored-by: dongjianhui <[email protected]> Co-authored-by: randy <[email protected]> Co-authored-by: 蒋超 <[email protected]>
What this PR does: