This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch automatic-periodic-sync in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git.
omit a21ae29 [create-pull-request] automated change add 16a21f3 [create-pull-request] automated change add 86d6469 CAMEL-17846 add tests in camel-aws2-ddb-starter (#481) add d99f0b7 Regen add 30ec2e1 Remove that hadoop2 classifier This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (a21ae29) \ N -- N -- N refs/heads/automatic-periodic-sync (30ec2e1) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omit" are not gone; other references still refer to them. Any revisions marked "discard" are gone forever. No new revisions were added by this update. Summary of changes: components-starter/camel-aws2-ddb-starter/pom.xml | 12 ++ .../org/apache/camel/component/aws2/BaseDdb2.java | 38 +++++ .../component/aws2/ddb/Ddb2BatchGetItemsTest.java | 159 +++++++++++++++++ .../component/aws2/ddb/Ddb2DeleteItemTest.java | 118 +++++++++++++ .../component/aws2/ddb/Ddb2DeleteTableTest.java | 99 +++++++++++ .../aws2/ddb/Ddb2DescribeTableRuleIT.java | 90 ++++++++++ .../camel/component/aws2/ddb/Ddb2GetItemTest.java | 116 +++++++++++++ .../camel/component/aws2/ddb/Ddb2QueryTest.java | 169 ++++++++++++++++++ .../camel/component/aws2/ddb/Ddb2ScanTest.java | 169 ++++++++++++++++++ .../component/aws2/ddb/Ddb2UpdateItemTest.java | 131 ++++++++++++++ .../aws2/ddb/Ddb2UpdateTableByIdTest.java} | 69 ++++---- .../component/aws2/ddbstream/Ddb2StreamTest.java | 190 +++++++++++++++++++++ .../pom.xml | 6 - tooling/camel-spring-boot-dependencies/pom.xml | 8 +- 14 files changed, 1324 insertions(+), 50 deletions(-) create mode 100644 components-starter/camel-aws2-ddb-starter/src/test/java/org/apache/camel/component/aws2/BaseDdb2.java create mode 100644 components-starter/camel-aws2-ddb-starter/src/test/java/org/apache/camel/component/aws2/ddb/Ddb2BatchGetItemsTest.java create mode 100644 components-starter/camel-aws2-ddb-starter/src/test/java/org/apache/camel/component/aws2/ddb/Ddb2DeleteItemTest.java create mode 100644 components-starter/camel-aws2-ddb-starter/src/test/java/org/apache/camel/component/aws2/ddb/Ddb2DeleteTableTest.java create mode 100644 components-starter/camel-aws2-ddb-starter/src/test/java/org/apache/camel/component/aws2/ddb/Ddb2DescribeTableRuleIT.java create mode 100644 components-starter/camel-aws2-ddb-starter/src/test/java/org/apache/camel/component/aws2/ddb/Ddb2GetItemTest.java create mode 100644 components-starter/camel-aws2-ddb-starter/src/test/java/org/apache/camel/component/aws2/ddb/Ddb2QueryTest.java create mode 100644 components-starter/camel-aws2-ddb-starter/src/test/java/org/apache/camel/component/aws2/ddb/Ddb2ScanTest.java create mode 100644 components-starter/camel-aws2-ddb-starter/src/test/java/org/apache/camel/component/aws2/ddb/Ddb2UpdateItemTest.java copy components-starter/{camel-sql-starter/src/test/java/org/apache/camel/component/sql/SqlProducerInTest.java => camel-aws2-ddb-starter/src/test/java/org/apache/camel/component/aws2/ddb/Ddb2UpdateTableByIdTest.java} (50%) create mode 100644 components-starter/camel-aws2-ddb-starter/src/test/java/org/apache/camel/component/aws2/ddbstream/Ddb2StreamTest.java