Skip to content

Commit

Permalink
Show Jamsocket env vars too
Browse files Browse the repository at this point in the history
  • Loading branch information
paulgb committed Apr 29, 2024
1 parent 4983ddc commit f7c082f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ async fn index(request: Request<Body>) -> Response<Body> {

let mut env_str = env
.iter()
.filter(|(key, _)| key.starts_with("SESSION_BACKEND_"))
.filter(|(key, _)| key.starts_with("SESSION_BACKEND_") || key.starts_with("JAMSOCKET_"))
.map(|(key, value)| {
format!(
r#"
Expand Down

0 comments on commit f7c082f

Please sign in to comment.