summaryrefslogtreecommitdiff
path: root/src/mongo/db/service_entry_point_mongod.h
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-25572 Fix ASAN clean shutdown logicJason Carey2016-08-231-0/+6
| | | | | | | | | | | | | | | | | | During shutdown a number of things are currently happening that shouldn't be: 1. The legacy transport layer is failing to actually close sockets in closeAll. It's doing this because the default argument to closeAll is to leave all sockets open on the legacy transport layer (versus to close them on the actual interface header). 2. The thing we're checking for in shutdown is wrong. It's just that we've left recv in all db workers, rather than that we've left all client workers (so ASAN is occasionally unhappy about "leaks") 3. Tests rely on external callers to close sockets. when this contract changes, we take an extra 10 seconds to shut down every mongod, making some tests time out. Fix this by adding a counter for actual live workers, so we can track when it's safe to shutdown correctly. Also fix the typo
* SERVER-24162 Integrate TransportLayerSamantha Ritter2016-07-121-0/+63
Expand the transport layer as needed to replace uses of abstract message port for ingress networking.