pipedald uses service.conf instead of a commandline option.

This commit is contained in:
Robin Davies
2024-09-05 13:31:09 -04:00
parent 9534d3dc41
commit 440f85e1d1
8 changed files with 53 additions and 33 deletions
+6 -1
View File
@@ -1252,7 +1252,12 @@ namespace pipedal
for (auto it = m_connections.begin(); it != m_connections.end(); ++it)
{
m_endpoint.close(*it, websocketpp::close::status::normal, "");
try {
m_endpoint.close(*it, websocketpp::close::status::normal, "");
} catch (const std::exception&ignored)
{
}
}
}
}