Controller waits READY message from router.

This required to avoid racing condition when controller receive router
port before router receives controller port.
This commit is contained in:
Max Romanov
2018-04-26 16:44:20 +03:00
parent 17160e9352
commit 179819dbee
3 changed files with 82 additions and 28 deletions

View File

@@ -30,19 +30,6 @@ nxt_port_handlers_t nxt_app_process_port_handlers = {
};
nxt_port_handlers_t nxt_router_process_port_handlers = {
.quit = nxt_worker_process_quit_handler,
.new_port = nxt_router_new_port_handler,
.change_file = nxt_port_change_log_file_handler,
.mmap = nxt_port_mmap_handler,
.data = nxt_router_conf_data_handler,
.remove_pid = nxt_router_remove_pid_handler,
.access_log = nxt_router_access_log_reopen_handler,
.rpc_ready = nxt_port_rpc_handler,
.rpc_error = nxt_port_rpc_handler,
};
nxt_port_handlers_t nxt_discovery_process_port_handlers = {
.quit = nxt_worker_process_quit_handler,
.new_port = nxt_port_new_port_handler,