Skip to content

Commit

Permalink
Merge pull request #1136 from cyberark/juxtaposer-handle-sig-pipe
Browse files Browse the repository at this point in the history
Adds SIGPIPE to signals handled by Secretless Juxtaposer
  • Loading branch information
sgnn7 authored Feb 10, 2020
2 parents d33932a + cfbd162 commit c6a4c77
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/juxtaposer/util/signal_listener.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ func RegisterShutdownSignalCallback(shutdownChannel chan<- bool) {
syscall.SIGABRT,
syscall.SIGHUP,
syscall.SIGINT,
syscall.SIGUSR1,
syscall.SIGPIPE,
syscall.SIGQUIT,
syscall.SIGTERM,
syscall.SIGUSR1,
)

go func() {
Expand Down

0 comments on commit c6a4c77

Please sign in to comment.