This is an automated email from the ASF dual-hosted git repository.
hansva pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/hop.git
The following commit(s) were added to refs/heads/main by this push:
new a710549fb2 allow constants only to still work in MDI, #5791 (#5863)
a710549fb2 is described below
commit a710549fb2e1c71c95355ff107d8dd19a0d306e4
Author: Hans Van Akelyen <[email protected]>
AuthorDate: Tue Oct 21 14:55:45 2025 +0200
allow constants only to still work in MDI, #5791 (#5863)
---
.../java/org/apache/hop/pipeline/transforms/metainject/MetaInject.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/plugins/transforms/metainject/src/main/java/org/apache/hop/pipeline/transforms/metainject/MetaInject.java
b/plugins/transforms/metainject/src/main/java/org/apache/hop/pipeline/transforms/metainject/MetaInject.java
index d520785215..140f3df9bf 100644
---
a/plugins/transforms/metainject/src/main/java/org/apache/hop/pipeline/transforms/metainject/MetaInject.java
+++
b/plugins/transforms/metainject/src/main/java/org/apache/hop/pipeline/transforms/metainject/MetaInject.java
@@ -109,7 +109,7 @@ public class MetaInject extends
BaseTransform<MetaInjectMeta, MetaInjectData> {
}
}
}
- if (!receivedRows || (hasEmptyList &&
!meta.isAllowEmptyStreamOnExecution())) {
+ if (!receivedRows && (hasEmptyList &&
!meta.isAllowEmptyStreamOnExecution())) {
setOutputDone();
return false;
}