-
Notifications
You must be signed in to change notification settings - Fork 178
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
fix(app): Fix improper transitioning run status in protocol runs #14454
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
addition of ignoreTipConfiguration flags
…ropriately Instead of checking the refetchInterval property to see if a notification refetch should occur, we should check if staleTime is infinity. This accurately captures the refetchHTTP behavior that we actually want.
mjhuff
requested review from
b-cooper and
shlokamin
and removed request for
a team and
b-cooper
February 8, 2024 19:11
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## edge #14454 +/- ##
==========================================
- Coverage 68.15% 68.15% -0.01%
==========================================
Files 1628 1628
Lines 54954 54952 -2
Branches 4141 4140 -1
==========================================
- Hits 37452 37450 -2
+ Misses 16814 16813 -1
- Partials 688 689 +1
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Will reopen with correct branch targeted. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Closes RQA-2291, RQA-2307, RQA-2306, RQA-2304
Overview
This PR fixes a bug on the app side in which the incorrect property React Query was used. In order to prevent any refetches, staleTime is the correct choice. Certain useRunQuery and useAllRunQuery hooks that were not updating properly now update as expected. Also, the removed
RUN_STATUS_STOP_REQUESTED
is added back to useRunStatus(), since its removal was causing bug RQA-2306.The python side changes are all sanity check changes - nothing new here. A new push is added to the remove method, since we want to push on every new CRUD. I don't know if this was causing bugs, but it should be fixed.
Test Plan
Changelog
Risk assessment
low