Skip to content

Commit

Permalink
Ignore SIGPIPE on mongos. SERVER-6509 SERVER-6513
Browse files Browse the repository at this point in the history
Was already ignoring on mongod, this just duplicated that behavior for mongos.

Conflicts:

	s/server.cpp
  • Loading branch information
stbrody authored and monkey101 committed Oct 15, 2012
1 parent 239d7d6 commit 3d8d357
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions s/server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ namespace mongo {
#if defined(SIGBUS)
signal( SIGBUS , printStackAndExit );
#endif
signal( SIGPIPE , SIG_IGN );
}

void init() {
Expand Down

0 comments on commit 3d8d357

Please sign in to comment.