fmt
This commit is contained in:
parent
90583e2048
commit
8802b60fcf
|
@ -199,7 +199,10 @@ const APP: () = {
|
||||||
stabilizer.cycle_counter,
|
stabilizer.cycle_counter,
|
||||||
env!("CARGO_BIN_NAME"),
|
env!("CARGO_BIN_NAME"),
|
||||||
stabilizer.net.mac_address,
|
stabilizer.net.mac_address,
|
||||||
option_env!("BROKER").unwrap_or("10.34.16.10").parse().unwrap(),
|
option_env!("BROKER")
|
||||||
|
.unwrap_or("10.34.16.10")
|
||||||
|
.parse()
|
||||||
|
.unwrap(),
|
||||||
);
|
);
|
||||||
|
|
||||||
let generator = network
|
let generator = network
|
||||||
|
|
|
@ -240,7 +240,10 @@ const APP: () = {
|
||||||
stabilizer.cycle_counter,
|
stabilizer.cycle_counter,
|
||||||
env!("CARGO_BIN_NAME"),
|
env!("CARGO_BIN_NAME"),
|
||||||
stabilizer.net.mac_address,
|
stabilizer.net.mac_address,
|
||||||
option_env!("BROKER").unwrap_or("10.34.16.10").parse().unwrap(),
|
option_env!("BROKER")
|
||||||
|
.unwrap_or("10.34.16.10")
|
||||||
|
.parse()
|
||||||
|
.unwrap(),
|
||||||
);
|
);
|
||||||
|
|
||||||
let generator = network.configure_streaming(
|
let generator = network.configure_streaming(
|
||||||
|
|
Loading…
Reference in New Issue