src/server/command_socket.rs: correctly handle/spawn handle parallel connections
This commit is contained in:
parent
9b002cbc5f
commit
cfb2d3c17c
|
@ -18,7 +18,6 @@ pub fn create_control_socket<P, F>(path: P, f: F) -> Result<impl Future<Item=(),
|
|||
F: Send + Sync +'static + Fn(Value) -> Result<Value, Error>,
|
||||
{
|
||||
let path: PathBuf = path.into();
|
||||
let path1: PathBuf = path.clone();
|
||||
|
||||
let socket = UnixListener::bind(&path)?;
|
||||
|
||||
|
@ -35,6 +34,9 @@ pub fn create_control_socket<P, F>(path: P, f: F) -> Result<impl Future<Item=(),
|
|||
let path = path3.clone();
|
||||
let path2 = path3.clone();
|
||||
|
||||
let abort_future = super::last_worker_future().map_err(|_| {});
|
||||
|
||||
tokio::spawn(
|
||||
tokio::io::lines(std::io::BufReader::new(rx))
|
||||
.map_err(move |err| { eprintln!("control socket {:?} read error: {}", path, err); })
|
||||
.and_then(move |cmd| {
|
||||
|
@ -57,7 +59,9 @@ pub fn create_control_socket<P, F>(path: P, f: F) -> Result<impl Future<Item=(),
|
|||
tx.write_all(resp.as_bytes())
|
||||
.map_err(|err| { eprintln!("control socket {:?} write response error: {}", path2, err); })
|
||||
})
|
||||
|
||||
.select(abort_future)
|
||||
.then(move |_| { Ok(()) })
|
||||
)
|
||||
});
|
||||
|
||||
let abort_future = super::last_worker_future().map_err(|_| {});
|
||||
|
|
Loading…
Reference in New Issue