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 2023/03/09 12:05:07 UTC

[hop] branch master updated: fix #2321 Table output: no variable substitution in database log entries

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/hop.git


The following commit(s) were added to refs/heads/master by this push:
     new 80df2a922e fix #2321 Table output: no variable substitution in database log entries
     new cfabe531a8 Merge pull request #2534 from sramazzina/2321
80df2a922e is described below

commit 80df2a922ecd51dad600c8ccea7a69489aa9b2c6
Author: sramazzina <se...@serasoft.it>
AuthorDate: Thu Mar 9 13:00:17 2023 +0100

    fix #2321 Table output: no variable substitution in database log entries
---
 .../org/apache/hop/pipeline/transforms/tableoutput/TableOutput.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plugins/transforms/tableoutput/src/main/java/org/apache/hop/pipeline/transforms/tableoutput/TableOutput.java b/plugins/transforms/tableoutput/src/main/java/org/apache/hop/pipeline/transforms/tableoutput/TableOutput.java
index a312a3cb2b..dd4c058b8c 100644
--- a/plugins/transforms/tableoutput/src/main/java/org/apache/hop/pipeline/transforms/tableoutput/TableOutput.java
+++ b/plugins/transforms/tableoutput/src/main/java/org/apache/hop/pipeline/transforms/tableoutput/TableOutput.java
@@ -528,7 +528,7 @@ public class TableOutput extends BaseTransform<TableOutputMeta, TableOutputData>
         if (log.isBasic()) {
           logBasic(
               "Connected to database ["
-                  + meta.getConnection()
+                  + variables.resolve(meta.getConnection())
                   + "] (commit="
                   + data.commitSize
                   + ")");