Browse Source

Renamed FILTER_* envvars

niels 1 year ago
parent
commit
b7f8ebe7de
1 changed files with 2 additions and 2 deletions
  1. 2 2
      responder-bench/src/run.rs

+ 2 - 2
responder-bench/src/run.rs

@@ -355,8 +355,8 @@ fn build_binaries(data_args: DataArgs, bloom_args: FilterArgs) -> anyhow::Result
             "build-artifacts",
             "--output-folder", bin_path.to_str().unwrap()
         ])
-        .env("BLOOMFILTER_ADDRESS_BITS", bloom_args.address_bits.to_string())
-        .env("BLOOMFILTER_ADDRESS_BITS_CHUNK", bloom_args.chunk_address_bits.to_string())
+        .env("FILTER_ADDRESS_BITS", bloom_args.address_bits.to_string())
+        .env("FILTER_ADDRESS_BITS_CHUNK", bloom_args.chunk_address_bits.to_string())
         .env("BLOOMFILTER_HASH_COUNT", bloom_args.hash_count.unwrap_or(0).to_string())
         .stdin(Stdio::null())
         .stderr(Stdio::piped())