We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebb468f commit a5d7505Copy full SHA for a5d7505
crates/challenge-orchestrator/src/docker.rs
@@ -544,6 +544,10 @@ impl DockerClient {
544
if let Ok(owner_hotkey) = std::env::var("OWNER_HOTKEY") {
545
env.push(format!("OWNER_HOTKEY={}", owner_hotkey));
546
}
547
+ // Pass broadcast secret for event broadcasting to platform-server
548
+ if let Ok(broadcast_secret) = std::env::var("BROADCAST_SECRET") {
549
+ env.push(format!("BROADCAST_SECRET={}", broadcast_secret));
550
+ }
551
// Pass DATABASE_URL with challenge-specific database name
552
if let Ok(db_url) = std::env::var("DATABASE_URL") {
553
// Replace database name with challenge name
0 commit comments