You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gi...@apache.org on 2020/11/05 06:35:31 UTC

[camel] branch regen_bot updated (7a27979 -> 3d9ef1e)

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from 7a27979  CAMEL-15809: properly initialize compound predicates (#4564)
     add 330750c  Make double checked locking in AbstractCamelContext#getBootstrapConfigurerResolver thread-safe. (#4565)
     add 7da79c3  [#CAMEL-15813] Add ClientInterceptors to the channel (#4566)
     add eede0f3  CAMEL-15813: Fixed CS and polished
     add 9a6935b  CAMEL-158080: init predicates added to AssertionClause (#4563)
     add 3d9ef1e  Regen for commit 9a6935bfdbe7ad6456c6e211ea7aed39fccc3584

No new revisions were added by this update.

Summary of changes:
 .../org/apache/camel/catalog/components/grpc.json  |   1 +
 .../apache/camel/catalog/docs/grpc-component.adoc  |   3 +-
 .../component/grpc/GrpcEndpointConfigurer.java     |   5 +
 .../component/grpc/GrpcEndpointUriFactory.java     |   3 +-
 .../org/apache/camel/component/grpc/grpc.json      |   1 +
 .../camel-grpc/src/main/docs/grpc-component.adoc   |   3 +-
 .../apache/camel/component/grpc/GrpcComponent.java |  18 ++-
 .../camel/component/grpc/GrpcConfiguration.java    |  32 ++++++
 .../apache/camel/component/grpc/GrpcProducer.java  |   1 +
 .../component/grpc/GrpcMockClientInterceptor.java  |  44 ++++++++
 .../grpc/GrpcProducerClientInterceptorTest.java    | 125 +++++++++++++++++++++
 .../camel/component/mock/AssertionClause.java      |   1 +
 .../camel/impl/engine/AbstractCamelContext.java    |   2 +-
 .../endpoint/dsl/GrpcEndpointBuilderFactory.java   |  90 +++++++++++++++
 .../modules/ROOT/pages/grpc-component.adoc         |   3 +-
 15 files changed, 323 insertions(+), 9 deletions(-)
 create mode 100644 components/camel-grpc/src/test/java/org/apache/camel/component/grpc/GrpcMockClientInterceptor.java
 create mode 100644 components/camel-grpc/src/test/java/org/apache/camel/component/grpc/GrpcProducerClientInterceptorTest.java