hansva commented on code in PR #5791:
URL: https://github.com/apache/hop/pull/5791#discussion_r2413897557


##########
plugins/transforms/metainject/src/main/java/org/apache/hop/pipeline/transforms/metainject/MetaInject.java:
##########
@@ -99,11 +100,10 @@ public boolean processRow() throws HopException {
 
           row = getRowFrom(rowSet);
         }
-        if (list.isEmpty()) {
-          receivedRows = false;
-          break;
+        if (!list.isEmpty()) {
+          receivedRows = true;
+          data.rowMap.put(prevTransformName, list);
         }
-        data.rowMap.put(prevTransformName, list);
       }
     }

Review Comment:
   You have added a new option `allowEmptyStreamOnExecution` but it is not 
included in the check?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to