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 8734add commit 8459e5fCopy full SHA for 8459e5f
src/main.rs
@@ -40,7 +40,7 @@ use std::{io, thread};
40
41
use anyhow::Result;
42
use injector::InjectorConfig;
43
-use jsonrpc::{start_server, Comm};
+use jsonrpc::start_server;
44
use mount_injector::{MountInjectionGuard, MountInjector};
45
use nix::sys::signal::{signal, SigHandler, Signal};
46
use nix::unistd::{pipe, read, write};
@@ -179,7 +179,7 @@ fn main() -> Result<()> {
179
Err(e) => Err(anyhow::Error::msg(e.to_string())),
180
};
181
182
- let (tx, rx) = mpsc::channel();
+ let (tx, _rx) = mpsc::channel();
183
{
184
let hookfs = match &mount_injector {
185
Ok(e) => Some(e.hookfs.clone().into()),
0 commit comments