Replace `asio::detached` with `async::use_blocked` in the notify
handler. This shouldn't be too much of a problem given that our notify
handlers elsewhere use blocking `notify_ack`.
At a later time I plan to do a larger refactor, but this should be a
backportable fix for the memory error.
https://tracker.ceph.com/issues/73313
Signed-off-by: Adam C. Emerson <aemerson@redhat.com>
bufferlist&& bl) {
co_spawn(rados.get_executor(),
handle_notify(ec, notify_id, cookie, notifier_id, std::move(bl)),
- asio::detached);
+ async::use_blocked);
}
asio::awaitable<void>