Skip to content

Commit

Permalink
Fix log spam when using a JdbcIO DataSource not support Lineage report (
Browse files Browse the repository at this point in the history
  • Loading branch information
Abacn authored Jan 13, 2025
1 parent b82bde8 commit 005a353
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1649,8 +1649,8 @@ private Connection getConnection() throws SQLException {
}
if (fqn != null) {
fqn.reportLineage(Lineage.getSources(), table);
reportedLineage = table;
}
reportedLineage = table;
}
}
return connection;
Expand Down Expand Up @@ -2717,8 +2717,8 @@ private Connection getConnection() throws SQLException {
}
if (fqn != null) {
fqn.reportLineage(Lineage.getSinks(), table);
reportedLineage = table;
}
reportedLineage = table;
}
}
return connection;
Expand Down

0 comments on commit 005a353

Please sign in to comment.