mirror of
https://github.com/boostorg/redis.git
synced 2026-01-19 04:42:09 +00:00
Uses ignore as default for connection::async_exec (#265)
Updates test_conn_echo_stress.cpp to use this default close #264
This commit is contained in:
committed by
GitHub
parent
2fc54bc73b
commit
4a2085c800
@@ -79,7 +79,7 @@ auto push_consumer(connection& conn, int expected) -> net::awaitable<void>
|
||||
auto echo_session(connection& conn, const request& pubs, int n) -> net::awaitable<void>
|
||||
{
|
||||
for (auto i = 0; i < n; ++i)
|
||||
co_await conn.async_exec(pubs, ignore);
|
||||
co_await conn.async_exec(pubs);
|
||||
}
|
||||
|
||||
void rethrow_on_error(std::exception_ptr exc)
|
||||
|
||||
Reference in New Issue
Block a user