Skip to content

Commit

Permalink
modify pod prefix to use hyphen
Browse files Browse the repository at this point in the history
  • Loading branch information
evanjt committed Oct 31, 2024
1 parent 63346f8 commit 82a3b51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ impl Config {
.expect("DEPLOYMENT must be set, this can be local, dev, stage, or prod")
);
let pod_prefix = format!(
"{}.{}",
"{}-{}",
env::var("APP_NAME").expect("APP_NAME must be set"),
env::var("DEPLOYMENT")
.expect("DEPLOYMENT must be set, this can be local, dev, stage, or prod")
Expand Down

0 comments on commit 82a3b51

Please sign in to comment.