You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by ha...@apache.org on 2021/10/06 07:04:24 UTC

[incubator-hop] branch master updated: [DOC] fix broken link in blockingtransform docs

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

hansva pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hop.git


The following commit(s) were added to refs/heads/master by this push:
     new bb2e518  [DOC] fix broken link in blockingtransform docs
     new 443a8da  Merge pull request #1118 from hansva/master
bb2e518 is described below

commit bb2e5182b05f902eff0d765ea88b372bc636100e
Author: Hans Van Akelyen <ha...@gmail.com>
AuthorDate: Wed Oct 6 09:03:38 2021 +0200

    [DOC] fix broken link in blockingtransform docs
---
 .../modules/ROOT/pages/pipeline/transforms/blockingtransform.adoc       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/hop-user-manual/modules/ROOT/pages/pipeline/transforms/blockingtransform.adoc b/docs/hop-user-manual/modules/ROOT/pages/pipeline/transforms/blockingtransform.adoc
index 9522219..97fa876 100644
--- a/docs/hop-user-manual/modules/ROOT/pages/pipeline/transforms/blockingtransform.adoc
+++ b/docs/hop-user-manual/modules/ROOT/pages/pipeline/transforms/blockingtransform.adoc
@@ -23,7 +23,7 @@ under the License.
 
 The Blocking transform blocks all output until the very last row is received from the previous transform.
 
-NOTE: It blocks until it gets the last row. It does *not* block until the previous transform is finished 100% which is functionality found in the other transform xref:pipeline/transforms/blockinguntiltransformsfinish.adoc[Blocking until transforms finish].
+NOTE: It blocks until it gets the last row. It does *not* block until the previous transform is finished 100% which is functionality found in the other transform xref:pipeline/transforms/blockuntiltransformsfinish.adoc[Blocking until transforms finish].
 
 At that point, the last row is sent to the next transform or the complete input is sent off to the next transform.
 Use the Blocking transform for triggering plugins, stored procedures, Java scripts, ... or for synchronization purposes.