-
Notifications
You must be signed in to change notification settings - Fork 316
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
check execution phase before access outputs #3179
Conversation
Signed-off-by: Troy Chiu <[email protected]>
Code Review Agent Run #2137feActionable Suggestions - 1
Review Details
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #3179 +/- ##
==========================================
- Coverage 78.71% 77.66% -1.05%
==========================================
Files 293 213 -80
Lines 25790 22247 -3543
Branches 2897 2901 +4
==========================================
- Hits 20300 17278 -3022
+ Misses 4681 4119 -562
- Partials 809 850 +41 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Changelist by BitoThis pull request implements the following key changes.
|
@@ -149,6 +149,13 @@ | |||
core_execution_models.WorkflowExecutionPhase.TIMED_OUT, | |||
} | |||
|
|||
@property | |||
def is_successful(self) -> bool: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider adding a property decorator to the is_successful
method to maintain consistency with other properties in the class. The method is currently defined with a property decorator but is missing the @property
decorator in the implementation.
Code suggestion
Check the AI-generated fix before applying
def is_successful(self) -> bool: | |
@property | |
def is_successful(self) -> bool: |
Code Review Run #2137fe
Should Bito avoid suggestions like this for future reviews? (Manage Rules)
- Yes, avoid them
Why are the changes needed?
Currently if we sync an execution which contains a launch plan, the sync would fail if the execution failed. This is because we didn't check the execution phase before access the outputs.
What changes were proposed in this pull request?
Check if the execution is successful before access the output.
How was this patch tested?
Tested with
Summary by Bito
This PR fixes a critical bug where output access could fail for unsuccessful executions. It adds a new property to verify execution phase and updates remote logic to check execution success before accessing outputs, preventing synchronization failures from premature output access.Unit tests added: False
Estimated effort to review (1-5, lower is better): 1