We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 927642a commit 9677796Copy full SHA for 9677796
lading/src/bin/lading.rs
@@ -13,8 +13,7 @@ use lading::{
13
blackhole,
14
captures::CaptureManager,
15
config::{Config, Telemetry},
16
- generator,
17
- inspector, observer,
+ generator, inspector, observer,
18
target::{self, Behavior, Output},
19
target_metrics,
20
};
@@ -211,7 +210,6 @@ struct Opts {
211
210
disable_inspector: bool,
212
}
213
214
-
215
fn get_config(ops: &Opts, config: Option<String>) -> Result<Config, Error> {
216
let contents = if let Some(config) = config {
217
config
@@ -565,7 +563,6 @@ async fn inner_main(
565
563
res
566
564
567
568
569
fn main() -> Result<(), Error> {
570
tracing_subscriber::fmt()
571
.with_env_filter(EnvFilter::from_default_env())
@@ -577,7 +574,6 @@ fn main() -> Result<(), Error> {
577
574
info!("Starting lading {version} run.");
578
575
let opts: Opts = Opts::parse();
579
576
580
581
let config = get_config(&opts, None);
582
583
let experiment_duration = if opts.experiment_duration_infinite {
0 commit comments