-
Notifications
You must be signed in to change notification settings - Fork 120
feat(fe): handle runners unavailability #2875
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
Conversation
The latest updates on your projects. Learn more about Vercel for GitHub.
|
How to use the Graphite Merge QueueAdd the label merge-queue to this PR to add it to the merge queue. You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
Claude encountered an error —— View job I'll analyze this and get back to you. |
commit: |
Graphite Automations"Test" took an action on this PR • (09/05/25)1 assignee was added to this PR based on Kacper Wojciechowski's automation. |
cc92e53
to
746212f
Compare
Claude encountered an error —— View job I'll analyze this and get back to you. |
746212f
to
423f29e
Compare
Claude encountered an error —— View job I'll analyze this and get back to you. |
423f29e
to
7d2a35f
Compare
Claude encountered an error —— View job I'll analyze this and get back to you. |
7d2a35f
to
71c745a
Compare
b4413d1
to
3716f5a
Compare
@jog1t i'll let you merge from here upward |
7a563a8
to
7f753b4
Compare
Claude encountered an error —— View job I'll analyze this and get back to you. |
7f753b4
to
71edb90
Compare
Claude encountered an error —— View job I'll analyze this and get back to you. |
Merge activity
|
Closes FRONT-796 ### TL;DR Added auto-wake functionality for sleeping actors in the actor inspector UI. ### What changed? - Added a new `wakeOnSelect` filter option that automatically wakes up sleeping actors when selected - Created a `GuardConnectableInspector` component that handles different actor states (destroyed, sleeping, pending allocation) - Implemented actor wake-up functionality with both manual and automatic options - Added mutation and query options for waking up actors - Improved error handling and user feedback for various actor states - Refactored the actor context provider system to better handle different actor states - Enhanced filter definitions to support default values ### How to test? 1. Select a sleeping actor in the actors list 2. Observe that it automatically wakes up if the "Auto-wake Actors on select" filter is enabled 3. Disable the auto-wake filter and select a sleeping actor 4. Verify that a "Wake up Actor" button appears and functions correctly 5. Test different actor states (destroyed, sleeping, pending allocation) to ensure appropriate messages are displayed ### Why make this change? This change improves the user experience when working with sleeping actors by providing an automatic wake-up option. Previously, users had to manually wake up actors before being able to inspect them, which added friction to the workflow. The new functionality streamlines the process while still giving users control over when actors are awakened.
Closes FRONT-796
TL;DR
Added auto-wake functionality for sleeping actors in the actor inspector UI.
What changed?
wakeOnSelect
filter option that automatically wakes up sleeping actors when selectedGuardConnectableInspector
component that handles different actor states (destroyed, sleeping, pending allocation)How to test?
Why make this change?
This change improves the user experience when working with sleeping actors by providing an automatic wake-up option. Previously, users had to manually wake up actors before being able to inspect them, which added friction to the workflow. The new functionality streamlines the process while still giving users control over when actors are awakened.