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 committed Jan 7, 2025
1 parent e0b04bf commit 83b6303
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 83b6303

Please sign in to comment.