iproto: fix accepting new connections after shutdown is started
When shutdown is started iproto stop accepting new connections yet new connections are still possible. One can use box.session.new() or use box.cfg{} to start accepting connections again. This is a minor bug but in the next patch we are going to free all iproto resources properly and rely on the fact that we stop accepting new connections. (Before iproto_free we call iproto_drop_connections to make sure all connections are finished. But if we continue to accept new connections then connection that established after dropping may not be finished.) Part of #8423 NO_CHANGELOG=internal NO_DOC=internal
Showing
- src/box/errcode.h 1 addition, 0 deletionssrc/box/errcode.h
- src/box/iproto.cc 29 additions, 7 deletionssrc/box/iproto.cc
- src/box/iproto.h 7 additions, 5 deletionssrc/box/iproto.h
- src/box/lua/iproto.c 3 additions, 1 deletionsrc/box/lua/iproto.c
- test/app-luatest/shutdown_test.lua 120 additions, 0 deletionstest/app-luatest/shutdown_test.lua
- test/box/error.result 1 addition, 0 deletionstest/box/error.result
Loading
Please register or sign in to comment