Skip to content

Commit

Permalink
fix(deployer): revert typo fix (#1856)
Browse files Browse the repository at this point in the history
  • Loading branch information
oddgrd authored Aug 12, 2024
1 parent b8aa727 commit 0ab5350
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion common/src/deployment.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ pub const DEPLOYER_END_MSG_BUILD_ERR: &str = "Service build 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"; // don't include this in end messages so that logs are not stopped too early
pub const DEPLOYER_END_MSG_COMPLETED: &str = "Service finished running all on its own";
pub const DEPLOYER_RUNTIME_START_RESPONSE: &str = "Runtime started successfully";
// There is a typo in this message, but it is matched on in cargo-shuttle, so we leave it for now.
pub const DEPLOYER_RUNTIME_START_RESPONSE: &str = "Runtime started successully";
pub const DEPLOYER_RUNTIME_START_FAILED: &str = "Runtime did not start successfully";

pub const DEPLOYER_END_MESSAGES_BAD: &[&str] = &[
Expand Down

0 comments on commit 0ab5350

Please sign in to comment.