This is an automated email from the ASF dual-hosted git repository.
wujimin pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/servicecomb-java-chassis.git.
from 00bc846 [SCB-2242] fix
org.apache.servicecomb.core.definition.MicroserviceVersionsMeta#MicroserviceVersionsMeta
bug of OOM (#2320)
new c018bed [SCB-2216]breakpoints testing for fast timeout of execution
new 0b46b0f [SCB-2216]fix review comments
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../common/rest/AbstractRestInvocation.java | 20 ++-
.../java/org/apache/servicecomb/core/Const.java | 6 +
.../org/apache/servicecomb/core/Invocation.java | 45 ++++--
.../core/definition/OperationConfig.java | 21 +++
...ent.java => InvocationBusinessFinishEvent.java} | 5 +-
...vent.java => InvocationHandlersStartEvent.java} | 7 +-
...t.java => InvocationStartSendRequestEvent.java} | 7 +-
...Event.java => InvocationTimeoutCheckEvent.java} | 7 +-
.../servicecomb/core/exception/ExceptionCodes.java | 1 +
.../core/filter/impl/ScheduleFilter.java | 2 +-
.../invocation/InvocationTimeoutBootListener.java | 159 +++++++++++++++++++++
.../core/provider/consumer/InvokerUtils.java | 7 +-
.../core/definition/OperationConfigTest.java | 9 ++
.../src/main/resources/microservice.yaml | 3 +
.../src/main/resources/microservice.yaml | 5 +-
.../servicecomb/demo/CommonSchemaInterface.java | 23 +--
.../java/org/apache/servicecomb/demo/TestMgr.java | 4 +
.../client/TestSpringMVCCommonSchemaInterface.java | 76 ++++++++++
.../demo/springmvc/client/TestUploadSchema.java | 2 +
.../src/main/resources/microservice.yaml | 1 -
.../springmvc/server/ProducerTestsAfterBootup.java | 4 +-
.../server/SpringMVCCommonSchemaInterface.java | 60 ++++++++
.../demo/springmvc/server/UploadSchema.java | 4 +
.../src/main/resources/microservice.yaml | 6 +
.../foundation/common/event/SimpleSubscriber.java | 2 +-
.../bizkeeper/FallbackPolicyManager.java | 6 +-
.../bizkeeper/TestFallbackPolicyManager.java | 8 +-
.../transport/highway/HighwayClient.java | 2 +-
.../transport/highway/HighwayClientFilter.java | 2 +-
.../transport/highway/HighwayCodec.java | 1 -
.../transport/highway/HighwayServerConnection.java | 2 +
.../transport/highway/HighwayServerInvoke.java | 7 +-
.../transport/highway/TestHighwayClient.java | 4 -
.../transport/highway/TestHighwayCodec.java | 6 +-
.../transport/rest/client/RestClientSender.java | 2 +-
.../rest/client/http/RestClientInvocation.java | 6 +-
.../rest/client/http/TestRestClientInvocation.java | 3 -
37 files changed, 455 insertions(+), 80 deletions(-)
copy
core/src/main/java/org/apache/servicecomb/core/event/{InvocationStartEvent.java
=> InvocationBusinessFinishEvent.java} (86%)
copy
core/src/main/java/org/apache/servicecomb/core/event/{InvocationStartEvent.java
=> InvocationHandlersStartEvent.java} (87%)
copy
core/src/main/java/org/apache/servicecomb/core/event/{InvocationStartEvent.java
=> InvocationStartSendRequestEvent.java} (86%)
copy
core/src/main/java/org/apache/servicecomb/core/event/{InvocationStartEvent.java
=> InvocationTimeoutCheckEvent.java} (87%)
create mode 100644
core/src/main/java/org/apache/servicecomb/core/invocation/InvocationTimeoutBootListener.java
copy
integration-tests/it-producer/src/main/java/org/apache/servicecomb/it/schema/TransportContextSchema.java
=>
demo/demo-schema/src/main/java/org/apache/servicecomb/demo/CommonSchemaInterface.java
(59%)
create mode 100644
demo/demo-springmvc/springmvc-client/src/main/java/org/apache/servicecomb/demo/springmvc/client/TestSpringMVCCommonSchemaInterface.java
create mode 100644
demo/demo-springmvc/springmvc-server/src/main/java/org/apache/servicecomb/demo/springmvc/server/SpringMVCCommonSchemaInterface.java