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 379e1dd commit 210997aCopy full SHA for 210997a
crates/core/tedge_watchdog/src/dummy_watchdog.rs
@@ -1,3 +1,7 @@
1
+use std::path::PathBuf;
2
+
3
pub async fn start_watchdog(_config_dir: PathBuf) -> Result<(), anyhow::Error> {
- anyhow::Error::from(crate::error::WatchdogError::WatchdogNotAvailable)
4
+ Err(anyhow::Error::from(
5
+ crate::error::WatchdogError::WatchdogNotAvailable,
6
+ ))
7
}
0 commit comments