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-kafka-connector.git.
omit dd473b3 [create-pull-request] automated change
add 3e5427d [create-pull-request] automated change
add df00ba6 Updated CHANGELOG.md
add 6a03108 Added sink file test cases for append and appendChars (rel:
gh issue #1208)
add 72c8079 Converted the file sink example to use properties instead of
URL and added comments
add 918dbdd Added documentation about the need to encode chars for the
Camel File Kafka Connector
add 4da0bcb Updated CHANGELOG.md
add 428051a [create-pull-request] automated change
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 (dd473b3)
\
N -- N -- N refs/heads/automatic-periodic-sync (428051a)
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:
CHANGELOG.md | 9 +
.../resources/connectors/camel-file-source.json | 6 +-
.../resources/connectors/camel-ftp-source.json | 6 +-
.../resources/connectors/camel-ftps-source.json | 6 +-
.../resources/connectors/camel-log-sink.json | 9 +-
.../resources/connectors/camel-quartz-source.json | 2 +-
.../resources/connectors/camel-sftp-source.json | 6 +-
.../src/generated/resources/camel-file-source.json | 6 +-
.../docs/camel-file-kafka-source-connector.adoc | 6 +-
.../file/CamelFileSourceConnectorConfig.java | 6 +-
.../src/generated/resources/camel-ftp-source.json | 6 +-
.../docs/camel-ftp-kafka-source-connector.adoc | 6 +-
.../ftp/CamelFtpSourceConnectorConfig.java | 6 +-
.../src/generated/resources/camel-ftps-source.json | 6 +-
.../docs/camel-ftps-kafka-source-connector.adoc | 6 +-
.../ftps/CamelFtpsSourceConnectorConfig.java | 6 +-
.../src/generated/resources/camel-log-sink.json | 9 +-
.../main/docs/camel-log-kafka-sink-connector.adoc | 5 +-
.../log/CamelLogSinkConnectorConfig.java | 6 +-
.../generated/resources/camel-quartz-source.json | 2 +-
.../docs/camel-quartz-kafka-source-connector.adoc | 2 +-
.../quartz/CamelQuartzSourceConnectorConfig.java | 2 +-
.../src/generated/resources/camel-sftp-source.json | 6 +-
.../docs/camel-sftp-kafka-source-connector.adoc | 6 +-
.../sftp/CamelSftpSourceConnectorConfig.java | 6 +-
.../camel-file-kafka-source-connector.adoc | 10 +-
.../camel-ftp-kafka-source-connector.adoc | 10 +-
.../camel-ftps-kafka-source-connector.adoc | 10 +-
.../connectors/camel-log-kafka-sink-connector.adoc | 9 +-
.../camel-quartz-kafka-source-connector.adoc | 6 +-
.../camel-sftp-kafka-source-connector.adoc | 10 +-
.../pages/contributor-guide/troubleshooting.adoc | 6 +
examples/CamelFileSinkConnector.properties | 8 +-
.../file/sink/CamelFilePropertyFactory.java | 8 +
.../file/sink/CamelSinkFileAppendCharsITCase.java | 193 +++++++++++++++++++++
.../file/sink/CamelSinkFileAppendITCase.java | 143 +++++++++++++++
.../file/sink/CamelSinkFileITCase.java | 100 ++---------
.../file/sink/util/CustomProducer.java | 23 +--
.../file/sink/util/FileTestUtil.java | 108 ++++++++++++
39 files changed, 592 insertions(+), 194 deletions(-)
create mode 100644
tests/itests-file/src/test/java/org/apache/camel/kafkaconnector/file/sink/CamelSinkFileAppendCharsITCase.java
create mode 100644
tests/itests-file/src/test/java/org/apache/camel/kafkaconnector/file/sink/CamelSinkFileAppendITCase.java
copy
tooling/camel-kafka-connector-docs-maven-plugin/src/main/java/org/apache/camel/kafkaconnector/maven/docs/dto/CamelKafkaConnectorTableModel.java
=>
tests/itests-file/src/test/java/org/apache/camel/kafkaconnector/file/sink/util/CustomProducer.java
(61%)
create mode 100644
tests/itests-file/src/test/java/org/apache/camel/kafkaconnector/file/sink/util/FileTestUtil.java