-
Notifications
You must be signed in to change notification settings - Fork 258
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
feat(deployer): StateChangeLayer, DeploymentLogLayer, new log item structure #1171
feat(deployer): StateChangeLayer, DeploymentLogLayer, new log item structure #1171
Conversation
cf9f0ad
to
0255379
Compare
557b9bd
to
bb0c8c1
Compare
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.
A few early comments
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.
Nice, seems about done 🥳
Co-authored-by: Pieter <pieter@chesedo.me>
e0a97fe
to
b06eaf8
Compare
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.
Nice, we just have to match the crash correctly and can then merge
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.
Nice! Just a few small comments.
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.
LGTM
pub const DEPLOYER_END_MSG_STARTUP_ERR: &str = "Service startup encountered an error"; | ||
pub const DEPLOYER_END_MSG_CRASHED: &str = "Service encountered an error and crashed"; | ||
pub const DEPLOYER_END_MSG_STOPPED: &str = "Service was stopped by the user"; | ||
pub const DEPLOYER_END_MSG_COMPLETED: &str = "Service finished running all on its own"; | ||
|
||
pub const DEPLOYER_END_MESSAGES_BAD: &[&str] = | ||
&[DEPLOYER_END_MSG_STARTUP_ERR, DEPLOYER_END_MSG_CRASHED]; | ||
pub const DEPLOYER_END_MESSAGES_GOOD: &[&str] = | ||
&[DEPLOYER_END_MSG_STOPPED, DEPLOYER_END_MSG_COMPLETED]; |
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.
Oh, nice!! 🥳
Description of change
How has this been tested? (if applicable)