Skip to content

Commit 7f8dca4

Browse files
committed
revert N_WORKERS env
1 parent 92634c6 commit 7f8dca4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/config.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,9 @@ impl Config {
141141
cloud.base_url = val;
142142
}
143143
}
144+
if let Some(val) = Self::get_env_var("N_WORKERS")? {
145+
self.prover.n_workers = val.parse()?;
146+
}
144147
if let Some(val) = Self::get_env_var("PROVING_SERVICE_API_KEY")? {
145148
if let Some(cloud) = &mut self.prover.cloud {
146149
cloud.api_key = val;

0 commit comments

Comments
 (0)