Skip to content

Commit 09bd47b

Browse files
committed
Fix error message
1 parent dea8a93 commit 09bd47b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/webview_provider/newLineagePanel.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ export class NewLineagePanel implements LineagePanelView {
531531
window.showErrorMessage(
532532
`An error occured while trying to compile your model: ${current_node}, type: ${current_node_type} ` +
533533
exc.exception.message +
534-
". Probably your dbt model is not yet materialized.",
534+
".",
535535
);
536536
this.telemetry.sendTelemetryError(
537537
"columnLineageCompileNodePythonError",
@@ -568,9 +568,9 @@ export class NewLineagePanel implements LineagePanelView {
568568

569569
if (relationsWithoutColumns.length !== 0) {
570570
window.showErrorMessage(
571-
"Failed to fetch columns for following tables: " +
571+
"Failed to fetch columns for " +
572572
relationsWithoutColumns.join(", ") +
573-
".",
573+
". Probably the dbt models are not yet materialized.",
574574
);
575575
// we still show the lineage for the rest of the models whose
576576
// schemas we could get so not returning here

0 commit comments

Comments
 (0)