This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit f3a6ee7c3729703e67d6516f4485060b8ee36973 Author: nayananga@acerubuntu18.04 <nayanangamuhandi...@gmail.com> AuthorDate: Sat Jun 22 17:05:21 2019 +0530 bug fixes --- docs/components/modules/ROOT/pages/aws-s3-component.adoc | 4 ++-- docs/components/modules/ROOT/pages/flink-component.adoc | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/components/modules/ROOT/pages/aws-s3-component.adoc b/docs/components/modules/ROOT/pages/aws-s3-component.adoc index db42150..0275975 100644 --- a/docs/components/modules/ROOT/pages/aws-s3-component.adoc +++ b/docs/components/modules/ROOT/pages/aws-s3-component.adoc @@ -87,7 +87,7 @@ with the following path and query parameters: [width="100%",cols="2,5,^1,2",options="header"] |=== | Name | Description | Default | Type -| *amazonS3Client* (common) | Reference to a com.amazonaws.services.s3.AmazonS3 in the xref:registry.adocRegistry. | | AmazonS3 +| *amazonS3Client* (common) | Reference to a com.amazonaws.services.s3.AmazonS3 in the xref:registry.adoc [Registry]. | | AmazonS3 | *autoCreateBucket* (common) | Setting the autocreation of the bucket | true | boolean | *pathStyleAccess* (common) | Whether or not the S3 client should use path style access | false | boolean | *policy* (common) | The policy for this queue to set in the com.amazonaws.services.s3.AmazonS3#setBucketPolicy() method. | | String @@ -463,7 +463,7 @@ This operation will list the buckets for this account This operation will delete the bucket mycamelbucket -- Downloadxref: this operation create a download link for the file specified in the key header +- DownloadLink: this operation create a download link for the file specified in the key header [source,java] -------------------------------------------------------------------------------- diff --git a/docs/components/modules/ROOT/pages/flink-component.adoc b/docs/components/modules/ROOT/pages/flink-component.adoc index 8d70465..99d9003 100644 --- a/docs/components/modules/ROOT/pages/flink-component.adoc +++ b/docs/components/modules/ROOT/pages/flink-component.adoc @@ -30,8 +30,8 @@ Currently, the Flink Component supports only Producers. One can create DataSet, [source,java] ------------------------------------------------- -fxref:dataset?dataset=#myDataSet&dataSetCallback=#dataSetCallback -fxref:datastream?datastream=#myDataStream&dataStreamCallback=#dataStreamCallback +flink:dataset?dataset=#myDataSet&dataSetCallback=#dataSetCallback +flink:datastream?datastream=#myDataStream&dataStreamCallback=#dataStreamCallback ------------------------------------------------- [[Flink-FlinkEndpointOptions]] @@ -43,7 +43,7 @@ FlinkEndpoint Options The Apache Flink endpoint is configured using URI syntax: ---- -fxref:endpointType +flink:endpointType ---- with the following path and query parameters: @@ -183,7 +183,7 @@ String pattern = "foo"; try { ProducerTemplate template = camelContext.createProducerTemplate(); camelContext.start(); - Long count = template.requestBody("fxref:dataSet?dataSet=#myDataSet&dataSetCallback=#countLinesContaining", pattern, Long.class); + Long count = template.requestBody("flink:dataSet?dataSet=#myDataSet&dataSetCallback=#countLinesContaining", pattern, Long.class); } finally { camelContext.stop(); }