Skip to content

Commit

Permalink
g3-daemon: keep control socket on accept error
Browse files Browse the repository at this point in the history
  • Loading branch information
zh-jq-b committed Jan 3, 2025
1 parent 90b1558 commit ecf13e1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion lib/g3-daemon/src/control/local/unix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ impl LocalControllerImpl {
}
Err(e) => {
warn!("controller {} accept: {e}", self.listen_path.display());
break;
}
}
}
Expand Down
1 change: 0 additions & 1 deletion lib/g3-daemon/src/control/local/windows.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ impl LocalControllerImpl {
}
Err(e) => {
warn!("controller {} accept: {e}", self.pipe_name);
break;
}
}
}
Expand Down

0 comments on commit ecf13e1

Please sign in to comment.