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 2022/10/07 20:38:00 UTC

[camel] branch regen_bot updated (08f86889639 -> 95d3905893c)

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 08f86889639 CAMEL-17438: camel-kubernetes - Add replace operation to producers (#8495)
     add e2a08bf5387 CAMEL-18595: microprofile-lra test-infra
     add 95d3905893c [camel-18327] resuming from last committed offset

No new revisions were added by this update.

Summary of changes:
 .../camel/component/kafka/KafkaFetchRecords.java   |  10 ++
 components/camel-lra/pom.xml                       |   7 ++
 .../camel/service/lra/AbstractLRATestSupport.java  |  15 +--
 .../org/apache/camel/service/lra/LRACreditIT.java  |   3 -
 .../apache/camel/service/lra/LRAFailuresIT.java    |   3 -
 .../org/apache/camel/service/lra/LRAManualIT.java  |   3 -
 .../org/apache/camel/service/lra/LRAOptionsIT.java |   3 -
 .../org/apache/camel/service/lra/LRATimeoutIT.java |   3 -
 .../camel-test-infra-microprofile-lra/pom.xml      |  59 +++++++++++
 .../src/main/resources/META-INF/MANIFEST.MF        |   0
 .../lra/common/MicroprofileLRAProperties.java      |  31 ++++++
 .../MicroprofileLRALocalContainerService.java      | 109 +++++++++++++++++++++
 .../lra/services/MicroprofileLRARemoteService.java |  58 +++++++++++
 .../lra/services/MicroprofileLRAService.java       |  48 +++++++++
 .../services/MicroprofileLRAServiceFactory.java    |  36 +++++++
 test-infra/pom.xml                                 |   1 +
 16 files changed, 368 insertions(+), 21 deletions(-)
 create mode 100644 test-infra/camel-test-infra-microprofile-lra/pom.xml
 copy {init/camel-bundle-plugin => test-infra/camel-test-infra-microprofile-lra}/src/main/resources/META-INF/MANIFEST.MF (100%)
 create mode 100644 test-infra/camel-test-infra-microprofile-lra/src/test/java/org/apache/camel/test/infra/microprofile/lra/common/MicroprofileLRAProperties.java
 create mode 100644 test-infra/camel-test-infra-microprofile-lra/src/test/java/org/apache/camel/test/infra/microprofile/lra/services/MicroprofileLRALocalContainerService.java
 create mode 100644 test-infra/camel-test-infra-microprofile-lra/src/test/java/org/apache/camel/test/infra/microprofile/lra/services/MicroprofileLRARemoteService.java
 create mode 100644 test-infra/camel-test-infra-microprofile-lra/src/test/java/org/apache/camel/test/infra/microprofile/lra/services/MicroprofileLRAService.java
 create mode 100644 test-infra/camel-test-infra-microprofile-lra/src/test/java/org/apache/camel/test/infra/microprofile/lra/services/MicroprofileLRAServiceFactory.java