Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Stop the unix_server from listening in shutdown stage as well. #6401

Merged
merged 1 commit into from
Nov 29, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions plugins/http_plugin/http_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -548,6 +548,8 @@ namespace eosio {
my->server.stop_listening();
if(my->https_server.is_listening())
my->https_server.stop_listening();
if(my->unix_server.is_listening())
my->unix_server.stop_listening();
}

void http_plugin::add_handler(const string& url, const url_handler& handler) {
Expand Down