Skip to content

Commit

Permalink
fix: Improve deprecation warning about columnLineage.datasetLineageEn…
Browse files Browse the repository at this point in the history
…abled property (OpenLineage#3282)

Signed-off-by: Artur Owczarek <[email protected]>
  • Loading branch information
arturowczarek authored Nov 29, 2024
1 parent 8807a5a commit 2a5306d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public static Optional<OpenLineage.ColumnLineageDatasetFacet> buildColumnLineage
.isDatasetLineageEnabled();
if (!datasetLineageEnabled) {
log.warn(
"DEPRECATION WARNING: The columnLineage.datasetLineageEnabled configuration is set to false. This flag will default to false in the future versions and soon will be removed (defaulting to true).");
"DEPRECATION WARNING: The columnLineage.datasetLineageEnabled configuration is set to false. This flag will default to true in the future versions. To avoid this warning, explicitly set it to true. This warning will automatically be removed once the default is switched to true.");
}
facetBuilder.fields(context.getBuilder().buildFields(datasetLineageEnabled));
context
Expand Down

0 comments on commit 2a5306d

Please sign in to comment.