You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fixed exhausted thread pool issue: destroyed all framework model before running some unit tests. dubbo thread pool might be exhausted by some other unit tests which don't destroyed framework models after their running.
fixed address already in use issue: un-exported service config of some unit tests.
Checklist
Make sure there is a GitHub_issue field for the change.
Write a pull request description that is detailed enough to understand what the pull request does, how, and why.
Write necessary unit-test to verify your logic correction. If the new feature or significant change is committed, please remember to add sample in dubbo samples project.
❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.
zrlw
changed the title
[3.3] Optimized getWrapper of bytecode Wrapper
[3.3] Optimized getWrapper of bytecode Wrapper and DemoServiceImpl of dubbo-remoting-netty4
Feb 23, 2025
You can trigger it on your own Github Repo Actions
i can trigger it but actions/checkout@v4 and other actions are not allowed to be used in my repository.
You can trigger it on your own Github Repo Actions
i can trigger it but actions/checkout@v4 and other actions are not allowed to be used in my repository.
i found a new issue related with EagerThreadPoolExecutorTest.testEagerThreadPoolFast, and it doesn't happen every time.
Error: org.apache.dubbo.common.threadpool.support.eager.EagerThreadPoolExecutorTest.testEagerThreadPoolFast -- Time elapsed: 10.08 s <<< ERROR!
org.awaitility.core.ConditionTimeoutException: Condition with Lambda expression in org.apache.dubbo.common.threadpool.support.eager.EagerThreadPoolExecutorTest was not fulfilled within 10 seconds.
at org.awaitility.core.ConditionAwaiter.await(ConditionAwaiter.java:167)
at org.awaitility.core.CallableCondition.await(CallableCondition.java:78)
at org.awaitility.core.CallableCondition.await(CallableCondition.java:26)
at org.awaitility.core.ConditionFactory.until(ConditionFactory.java:1006)
at org.awaitility.core.ConditionFactory.until(ConditionFactory.java:975)
at org.apache.dubbo.common.threadpool.support.eager.EagerThreadPoolExecutorTest.testEagerThreadPoolFast(EagerThreadPoolExecutorTest.java:137)
at java.base/java.lang.reflect.Method.invoke(Method.java:580)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
zrlw
changed the title
[3.3] Optimized getWrapper of bytecode Wrapper and DemoServiceImpl of dubbo-remoting-netty4
[3.3] Optimized getWrapper of bytecode Wrapper and added dubbo-test-check back to dubbo-remoting-netty4
Feb 25, 2025
zrlw
changed the title
[3.3] Optimized getWrapper of bytecode Wrapper and added dubbo-test-check back to dubbo-remoting-netty4
[3.3] Optimized getWrapper of bytecode Wrapper and destroyed all framework model before each test of dubbo-remoting-netty4#ReplierDispatcherTest
Feb 25, 2025
zrlw
changed the title
[3.3] Optimized getWrapper of bytecode Wrapper and destroyed all framework model before each test of dubbo-remoting-netty4#ReplierDispatcherTest
[3.3] Optimized Wrapper#getWrapper, destroyed all framework model before each test of ReplierDispatcherTest, cleared application config manager before running some dubbo config unit tests
Feb 26, 2025
zrlw
changed the title
[3.3] Optimized Wrapper#getWrapper, destroyed all framework model before each test of ReplierDispatcherTest, cleared application config manager before running some dubbo config unit tests
[3.3] Optimized Wrapper#getWrapper, destroyed all framework model before some unit tests, cleared application config manager before running some dubbo config unit tests
Feb 26, 2025
zrlw
changed the title
[3.3] Optimized Wrapper#getWrapper, destroyed all framework model before some unit tests, cleared application config manager before running some dubbo config unit tests
[3.3] Optimized Wrapper#getWrapper, destroyed all framework model before running some unit tests, cleared application config manager before running some dubbo config unit tests
Feb 26, 2025
zrlw
changed the title
[3.3] Optimized Wrapper#getWrapper, destroyed all framework model before running some unit tests, cleared application config manager before running some dubbo config unit tests
[3.3] Optimized Wrapper#getWrapper, cleared application config manager before running some dubbo config unit tests
Feb 26, 2025
zrlw
changed the title
[3.3] Optimized Wrapper#getWrapper, cleared application config manager before running some dubbo config unit tests
[3.3] Optimized Wrapper#getWrapper and some unit tests
Feb 26, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What is the purpose of the change?
try to fix #15160
Checklist