We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ec41bb commit 394498dCopy full SHA for 394498d
client/src/ClientSocketListener.hpp
@@ -173,13 +173,13 @@ class ClientCoroutine : public oatpp::async::Coroutine<ClientCoroutine> {
173
return finish();
174
}
175
176
- Action handleError(const std::shared_ptr<const Error>& error) override {
+ Action handleError(Error* error) override {
177
if(error) {
178
OATPP_LOGD("ClientCoroutine", "Error. %s", error->what());
179
180
181
OATPP_ASSERT(false && "handleError - any error in WebSocket communication is considered to be fatal in this benchmark");
182
- return propagateError();
+ return error;
183
184
185
};
0 commit comments