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 507c4ef commit 36163aeCopy full SHA for 36163ae
lading/src/bin/lading.rs
@@ -888,7 +888,9 @@ telemetry:
888
889
let tmp_dir = tempfile::tempdir().expect("directory could not be created");
890
let config_path = tmp_dir.path().join("config.yaml");
891
- std::fs::write(&config_path, contents).expect("Failed to write config file");
+ tokio::fs::write(&config_path, contents)
892
+ .await
893
+ .expect("Failed to write config file");
894
895
let args = vec![
896
"lading",
0 commit comments