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 2a58f5f commit 3cd5a2aCopy full SHA for 3cd5a2a
src/sasctl/_services/score_execution.py
@@ -73,8 +73,11 @@ def create_score_execution(
73
74
# Getting all score executions that are using the inputted score_definition_id
75
76
- score_execution = cls.list_executions(
77
- filter=f"eq(scoreDefinitionId, '{score_definition_id}')"
+ # score_execution = cls.list_executions(
+ # filter=f"eq(scoreDefinitionId, '{score_definition_id}')"
78
+ # )
79
+ score_execution = cls.get("scoreExecution/executions",
80
+ filter=f"filter=eq(scoreExecutionRequest.scoreDefinitionId,%{score_definition_id}%27)"
81
)
82
if not score_execution:
83
raise HTTPError(f"Something went wrong in the LIST_EXECUTIONS statement.")
0 commit comments