(socket_path: &Path)
| 851 | /// `tracedecay update` (see [`DAEMON_RESTART_GRACE`]). |
| 852 | #[cfg(unix)] |
| 853 | async fn connect_to_daemon(socket_path: &Path) -> Result<UnixStream> { |
| 854 | connect_with_restart_grace( |
| 855 | socket_path, |
| 856 | DAEMON_RESTART_GRACE, |
| 857 | DAEMON_RESTART_POLL_INTERVAL, |
| 858 | ) |
| 859 | .await |
| 860 | } |
| 861 | |
| 862 | /// Connects to the daemon socket, tolerating a short restart outage. |
| 863 | /// |
no test coverage detected