-
Notifications
You must be signed in to change notification settings - Fork 17
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
use new dns client to fix data race and reuse connect #341
Conversation
原 pr 代码推送上来后,分支有更新,但是 pr 没有更新,怀疑遇到了 github 的bug,因此重新开启新的 pr |
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #341 +/- ##
==========================================
+ Coverage 80.73% 81.07% +0.34%
==========================================
Files 22 22
Lines 1557 1596 +39
==========================================
+ Hits 1257 1294 +37
- Misses 223 224 +1
- Partials 77 78 +1
Flags with carried forward coverage won't be shown. Click here to find out more.
|
f515cf9
to
05f7c79
Compare
@@ -779,7 +779,7 @@ var _ = Describe("testing appHttpHealth test ", Label("appHttpHealth"), func() { | |||
Expect(e).NotTo(HaveOccurred(), "check task runtime resource delete") | |||
}) | |||
|
|||
It("Successfully testing using default daemonSet as workload with Task AppHttpHealthy ", Label("E00014"), func() { | |||
It("Successfully testing using default daemonSet as workload with Task AppHttpHealthy ", Pending, Label("E00014"), func() { |
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.
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.
增加了 limit 数值,未现 oom 了
6eb01a8
to
3e9242b
Compare
@@ -14,8 +14,8 @@ import ( | |||
|
|||
var _ = Describe("testing netReach ", Label("netReach"), func() { | |||
var termMin = int64(1) | |||
// 1000ms is not stable on GitHub ci, so increased to 3000ms | |||
var requestTimeout = 3000 |
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.
1f2b5e1
to
9543d94
Compare
Signed-off-by: ii2day <ji.li@daocloud.io>
1.原方法在使用 udp 协议复用连接时,因为 msg id 问题,返回会被抛弃,通过更改连接复用的使用方式,达到复用连接时不丢弃消息,同时因 tcp 协议在服务端会存在连接时长过长问题被动断开连接,因此 tcp 协议不进行连接复用。
2.e2e 资源 limit 增加
3. e2e 增加延迟数值
fix #298
fix #305