aboutsummaryrefslogtreecommitdiffstats
path: root/lib/agent/apiv1-exec.go
diff options
context:
space:
mode:
Diffstat (limited to 'lib/agent/apiv1-exec.go')
-rw-r--r--lib/agent/apiv1-exec.go23
1 files changed, 12 insertions, 11 deletions
diff --git a/lib/agent/apiv1-exec.go b/lib/agent/apiv1-exec.go
index 4a1340b..d742693 100644
--- a/lib/agent/apiv1-exec.go
+++ b/lib/agent/apiv1-exec.go
@@ -181,17 +181,18 @@ func (s *APIService) execCmd(c *gin.Context) {
// Forward back command to right server
res := xsapiv1.ExecResult{}
xsArgs := &xsapiv1.ExecArgs{
- ID: args.ID,
- SdkID: args.SdkID,
- CmdID: args.CmdID,
- Cmd: args.Cmd,
- Args: args.Args,
- Env: args.Env,
- RPath: args.RPath,
- TTY: args.TTY,
- TTYGdbserverFix: args.TTYGdbserverFix,
- ExitImmediate: args.ExitImmediate,
- CmdTimeout: args.CmdTimeout,
+ ID: args.ID,
+ SdkID: args.SdkID,
+ CmdID: args.CmdID,
+ Cmd: args.Cmd,
+ Args: args.Args,
+ Env: args.Env,
+ RPath: args.RPath,
+ TTY: args.TTY,
+ TTYGdbserverFix: args.TTYGdbserverFix,
+ LdLibPathNoReset: args.LdLibPathNoReset,
+ ExitImmediate: args.ExitImmediate,
+ CmdTimeout: args.CmdTimeout,
}
if err := svr.CommandExec(xsArgs, &res); err != nil {
common.APIError(c, err.Error())