Skip to content

Commit

Permalink
fixup for return value
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-kasten committed Jan 17, 2025
1 parent 67080bf commit 2fa658a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions build/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,4 @@ echo

echo "PASS"
echo

2 changes: 1 addition & 1 deletion pkg/kando/process_client_output.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func runProcessClientOutput(cmd *cobra.Command, args []string) error {
return runProcessClientOutputWithOutput(cmd.OutOrStdout(), cmd.ErrOrStderr(), cmd, args)
}

func proxySetup(ctx context.Context, addr string, pid int64) error {
func proxySetup(ctx context.Context, addr string, pid int64) {
log.Info().WithContext(ctx).Print(fmt.Sprintf("signal proxy is running for process %d", pid))
signalTermChan := make(chan os.Signal, 1)
signal.Notify(signalTermChan, syscall.SIGINT, syscall.SIGTERM)
Expand Down

0 comments on commit 2fa658a

Please sign in to comment.