-
Notifications
You must be signed in to change notification settings - Fork 82
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
chore(api-status): add container status check #2159
chore(api-status): add container status check #2159
Conversation
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. |
Merge activity
|
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.
PR Summary
This PR adds container status check functionality alongside existing isolate checks by generalizing the configuration and routing structure.
- Renamed
actor_isolate.rs
toactor.rs
and addedStatusQueryBuild
enum to support bothws-isolate
andws-container
builds - Renamed configuration keys from
system_test_isolate_*
tosystem_test_*
across config files for more generic status check handling - Added container-specific resource specifications (CPU: 100, Memory: 128) in
actor.rs
for container builds - Simplified API routing from
/actor/isolate
to/actor
to handle both types of status checks - Updated server spec schema to reflect renamed configuration properties while maintaining functionality
6 file(s) reviewed, 1 comment(s)
Edit PR Review Bot Settings | Greptile
#[derive(Debug, Serialize, Deserialize)] | ||
enum StatusQueryBuild { | ||
#[serde(rename = "ws-isolate")] | ||
WsIsoalte, |
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.
syntax: WsIsoalte is misspelled (should be WsIsolate)
WsIsoalte, | |
WsIsolate, |
<!-- Please make sure there is an issue that this PR is correlated to. --> ## Changes <!-- If there are frontend changes, please include screenshots. -->
Changes