Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: 发送文件失败后重试 #299

Merged
merged 11 commits into from
Oct 8, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ func (e *executor) realExecuteLocalTask(locallockweight int32) *types.LocalTaskE
var outBuf, errBuf bytes.Buffer
sandbox.Stdout = &outBuf
sandbox.Stderr = &errBuf
blog.Infof("executor:ready run cmd:%v", e.req.Commands)
blog.Infof("executor: ready from pid(%d) run cmd:%v", e.req.Pid, e.req.Commands)
cmd := e.req.Commands[0]
if strings.HasSuffix(cmd, "cmd.exe") || strings.HasSuffix(cmd, "Cmd.exe") {
arg := strings.Join(e.req.Commands, " ")
Expand Down
Loading
Loading