We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5d7505 commit b5bd205Copy full SHA for b5bd205
crates/challenge-orchestrator/src/docker.rs
@@ -515,7 +515,8 @@ impl DockerClient {
515
// Build environment variables
516
// Note: Setting env overrides image ENV, so we include common vars
517
let mut env: Vec<String> = Vec::new();
518
- env.push(format!("CHALLENGE_ID={}", config.challenge_id));
+ // Use challenge NAME (not UUID) so validators can match events by name
519
+ env.push(format!("CHALLENGE_ID={}", config.name));
520
env.push(format!("MECHANISM_ID={}", config.mechanism_id));
521
// Pass through important environment variables from image defaults
522
env.push("TASKS_DIR=/app/data/tasks".to_string());
0 commit comments