Skip to content

Commit 91328a1

Browse files
committed
fix: fixes all-models-selected matching condition
1 parent d39464f commit 91328a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dagster_sqlmesh/resource.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ def run(
256256
models = mesh.models()
257257
models_map = models.copy()
258258
all_available_models = set(
259-
[model.name for model, _ in mesh.non_external_models_dag()]
259+
[model.fqn for model, _ in mesh.non_external_models_dag()]
260260
)
261261
if context.selected_output_names:
262262
models_map = {}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "dagster-sqlmesh"
3-
version = "0.10.0a1"
3+
version = "0.10.0"
44
description = ""
55
authors = [
66
{name = "Reuven Gonzales", email = "reuven@karibalabs.co"}

0 commit comments

Comments
 (0)