From 3f54d5f866d26658a8ae4594eef774f67f90fdac Mon Sep 17 00:00:00 2001 From: liqiang Date: Tue, 8 Aug 2023 17:19:11 +0800 Subject: [PATCH] hide remote pipe inherit, It now has message channel blocking issues Signed-off-by: liqiang --- qtfs/rexec/rexec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qtfs/rexec/rexec.c b/qtfs/rexec/rexec.c index 5b90c32..a214a74 100644 --- a/qtfs/rexec/rexec.c +++ b/qtfs/rexec/rexec.c @@ -722,10 +722,10 @@ int main(int argc, char *argv[]) return -1; } rexec_log("Remote exec binary:%s", argv[1]); - if (rexec_pipe_remote_inherit(pipeefd, connfd) != 0) { + /*if (rexec_pipe_remote_inherit(pipeefd, connfd) != 0) { rexec_err("Rexec pipe remote inherit failed."); goto err_end; - } + }*/ int arglen = rexec_calc_argv_len(argc - 1, &argv[1]); if (arglen <= 0) { -- Gitee