We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63003fd commit 3cf3946Copy full SHA for 3cf3946
sqlmesh/utils/__init__.py
@@ -403,3 +403,7 @@ def __str__(self) -> str:
403
@classmethod
404
def from_plan_id(cls, plan_id: str) -> CorrelationId:
405
return CorrelationId(JobType.PLAN, plan_id)
406
+
407
+ @classmethod
408
+ def from_run_id(cls, run_id: str) -> CorrelationId:
409
+ return CorrelationId(JobType.RUN, run_id)
0 commit comments