2
0
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:
Anarthal (Rubén Pérez)
2025-06-07 13:21:20 +02:00
committed by GitHub
parent 2fc54bc73b
commit 4a2085c800
2 changed files with 3 additions and 3 deletions

View File

@@ -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)