Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Cai <jcai@gitlab.com>2022-10-10 19:30:43 +0300
committerJohn Cai <jcai@gitlab.com>2022-10-10 19:30:43 +0300
commitd7c80a589d368dc32a23555bd6de8eafd5c97a19 (patch)
treecbf63858b4b5da52da56a6bb593ac951edb44984
parent408f0804de883e0fcb2c2ed129eba29df3ef49ed (diff)
-rw-r--r--internal/command/command.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/internal/command/command.go b/internal/command/command.go
index b3ebf1939..8862fe3eb 100644
--- a/internal/command/command.go
+++ b/internal/command/command.go
@@ -202,8 +202,6 @@ func New(ctx context.Context, nameAndArgs []string, opts ...Option) (*Command, e
cmd := exec.Command(nameAndArgs[0], nameAndArgs[1:]...)
if featureflag.RunCmdsInProcessGroup.IsEnabled(ctx) {
- fmt.Printf("PARENT PID IS %d\n", cfg.parentPid)
- time.Sleep(10 * time.Second)
cmd.SysProcAttr = &syscall.SysProcAttr{
Setpgid: true,
Pgid: cfg.parentPid,