cli: allow exec server to listen on a port and require token authentication (#188434)

* cli: allow exec server to listen on a port and require token authentication

For remote ssh on Windows where pipe forwarding doesn't work

* fix linux build
This commit is contained in:
Connor Peet
2023-07-21 09:32:20 -07:00
committed by GitHub
parent fb031d4957
commit b5038f81d1
9 changed files with 121 additions and 40 deletions

View File

@@ -122,7 +122,7 @@ pub struct MsgPackCodec<T> {
impl<T> MsgPackCodec<T> {
pub fn new() -> Self {
Self {
_marker: std::marker::PhantomData::default(),
_marker: std::marker::PhantomData,
}
}
}