Skip to content

Commit 80b3116

Browse files
committed
Debugging.
1 parent 7cb8727 commit 80b3116

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

libs/networking/src/curl_multi_manager.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,10 @@ void CurlMultiManager::add_handle(const std::shared_ptr<CURL>& easy,
5757
}
5858

5959
// Failed to add handle - invoke callback with manager error
60-
boost::asio::post(executor_, [callback = std::move(callback), easy]() {
61-
callback(easy, Result::FromManagerError());
62-
});
60+
// Disabled for debugging.
61+
// boost::asio::post(executor_, [callback = std::move(callback), easy]() {
62+
// callback(easy, Result::FromManagerError());
63+
// });
6364
return;
6465
}
6566

0 commit comments

Comments
 (0)