-
Updated
Sep 11, 2020 - Go
circuit-breaker
Here are 284 public repositories matching this topic...
Issue Description
Type: bug report
NettyTransportClient.getCurrentId
private int getCurrentId() {
if (idGenerator.get() > MAX_ID) {
idGenerator.set(0);
}
return idGenerator.incrementAndGet();
}个人理解这个ID应该是用于协议纠错,getCurrentId的目的是为了循环产生ID,且在循环周期内不重复,即生成ID为1,2,3 ... -> MAX -> 1,2,3 ...。
Describe what happe
-
Updated
May 2, 2020 - C#
-
Updated
Sep 1, 2020 - Go
-
Updated
Sep 7, 2020 - Go
-
Updated
Sep 11, 2020 - Go
-
Updated
Sep 10, 2020 - TypeScript
-
Updated
Aug 29, 2020 - Ruby
-
Updated
Aug 18, 2018 - Go
Problem Summary:
-
There was a change to Steeltoe quite some time ago to comply with the Spring spec for returning HTTP 503 in cases of HealthStatus.DOWN or HealthStatus.OUT_OF_SERVICE.
-
For 500 series errors, however, HWC is configured by default to substitute a canned message for the http response content - so, instead of getting back any failed health checks, the monitor just gets a 503 w
-
Updated
Sep 11, 2020 - JavaScript
-
Updated
Oct 2, 2018 - Go
-
Updated
Aug 31, 2020 - PHP
-
Updated
Jul 21, 2020 - JavaScript
-
Updated
Jun 23, 2020 - Clojure
-
Updated
Jul 23, 2020 - PHP
-
Updated
May 1, 2020 - TypeScript
-
Updated
Aug 27, 2020 - Clojure
-
Updated
May 15, 2019 - C#
-
Updated
Feb 6, 2020 - C#
-
Updated
Jun 15, 2020 - Java
-
Updated
May 15, 2019
-
Updated
Aug 14, 2020 - Python
Improve this page
Add a description, image, and links to the circuit-breaker topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the circuit-breaker topic, visit your repo's landing page and select "manage topics."


Hey guys
I am learning and using seata recently, this is a great thing.
Component
spring-cloud-alibaba-seata:0.9.0.RELEASE
Question
I see that the seata source code contains the spring boot web dependency. **Is there a plan to support [sp