Repeatedly log on amendment block (#829)

Fixes #364
This commit is contained in:
Alex Kremer
2023-09-13 13:34:02 +01:00
committed by GitHub
parent 91648f98ad
commit 6cfbfda014
12 changed files with 262 additions and 57 deletions

View File

@@ -66,12 +66,12 @@ public:
* @brief Send via shared_ptr of string, that enables SubscriptionManager to publish to clients.
*
* @param msg The message to send
* @throws Not supported unless implemented in child classes. Will always throw std::runtime_error.
* @throws Not supported unless implemented in child classes. Will always throw std::logic_error.
*/
virtual void
send(std::shared_ptr<std::string> msg)
{
throw std::runtime_error("web server can not send the shared payload");
throw std::logic_error("web server can not send the shared payload");
}
/**