Skip to content

Commit

Permalink
chore(version): minor bump to 2.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveRuble committed Nov 13, 2020
1 parent a1e5cda commit 5c3b2a7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion bosun.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ apps:
release: ""
feature: issue/{{.Number}}/{{.Slug}}
repo: naveego/bosun
version: 2.10.1
version: 2.11.0
labels:
category: tool
repo-kind: own
Expand Down
6 changes: 0 additions & 6 deletions pkg/kube/portforward/task.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import (
"gopkg.in/tomb.v2"
"io"
"os/exec"
"syscall"
"time"
)

Expand Down Expand Up @@ -89,11 +88,6 @@ func (t *portForwardTask) Start() {
stderr, _ := cmd.StderrPipe()
go pipeToLog(fmt.Sprintf("STDERR: %s: ", t.name), t.log, stderr)

cmd.SysProcAttr = &syscall.SysProcAttr{
Setpgid: true,
Pdeathsig: syscall.SIGKILL,
}

cmdErr := cmd.Start()
if cmdErr != nil {
t.log.WithError(cmdErr).Errorf("Command with args %v couldn't start.", args)
Expand Down

0 comments on commit 5c3b2a7

Please sign in to comment.