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/02/10 15:56:35 UTC

[incubator-hop] branch master updated: HOP-2514, HOP-2515 - Kettle import element type fixes

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 c129062  HOP-2514, HOP-2515 - Kettle import element type fixes
     new e95aa28  Merge pull request #617 from bamaer/import-fixes
c129062 is described below

commit c1290622beae4df91e4cfd33d23408cdf77a726e
Author: Bart Maertens <ba...@know.bi>
AuthorDate: Wed Feb 10 16:50:38 2021 +0100

    HOP-2514, HOP-2515 - Kettle import element type fixes
---
 .../src/main/java/org/apache/hop/imports/kettle/KettleConst.java     | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/plugins/misc/import/src/main/java/org/apache/hop/imports/kettle/KettleConst.java b/plugins/misc/import/src/main/java/org/apache/hop/imports/kettle/KettleConst.java
index 7bfc91a..96ee34b 100644
--- a/plugins/misc/import/src/main/java/org/apache/hop/imports/kettle/KettleConst.java
+++ b/plugins/misc/import/src/main/java/org/apache/hop/imports/kettle/KettleConst.java
@@ -49,7 +49,9 @@ public class KettleConst {
                 {"entries", "actions"},
                 {"entry", "action"},
                 {"source_step", "source_transform"},
-                {"target_step", "target_transform"}
+                {"target_step", "target_transform"},
+                {"step1", "transform1"},
+                {"step2", "transform2"}
               })
           .collect(Collectors.toMap(data -> (String) data[0], data -> (String) data[1]));
 
@@ -89,6 +91,7 @@ public class KettleConst {
               new Object[][] {
                 {"JOB", "WORKFLOW"},
                 {"TRANS", "PIPELINE"},
+                {"BlockingStep","BlockingTransform"},
                 {"BlockUntilStepsFinish", "BlockUntilTransformsFinish"},
                 {"TypeExitExcelWriterStep", "TypeExitExcelWriterTransform"},
                 {"StepMetastructure", "TransformMetaStructure"}