We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c9db91 commit 591e4e6Copy full SHA for 591e4e6
bin/builder.rs
@@ -14,14 +14,13 @@ use tokio::select;
14
async fn main() -> eyre::Result<()> {
15
let _guard = init4_bin_base::init4();
16
let init_span_guard = info_span!("builder initialization");
17
+ builder::config_from_env();
18
- // Spawn the EnvTask
19
+ // Set up env and metrics tasks
20
let (env_task, metrics_task) = tokio::try_join!(EnvTask::new(), MetricsTask::new())?;
21
- // Spawn the Env task
22
+ // Spawn the env and metrics tasks
23
let (block_env, env_jh) = env_task.spawn();
-
24
- // Spawn the metrics task
25
let (tx_channel, metrics_jh) = metrics_task.spawn();
26
27
// Set up the cache, submit, and simulator tasks
0 commit comments