We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b9fe13 commit b12584dCopy full SHA for b12584d
piperider_cli/dbt/list_task.py
@@ -114,12 +114,7 @@ def patched_get_manifest_schema_version(dct: dict) -> int:
114
return int(match.group(1))
115
raise ValueError("Manifest doesn't have schema version")
116
117
- import dbt.contracts.graph.manifest
118
- origin_function = dbt.contracts.graph.manifest.get_manifest_schema_version
119
- dbt.contracts.graph.manifest.get_manifest_schema_version = patched_get_manifest_schema_version
120
-
121
result = WritableManifest.upgrade_schema_version(data)
122
- dbt.contracts.graph.manifest.get_manifest_schema_version = origin_function
123
return result
124
125
0 commit comments