diff --git a/tests/universal/network/cancellation.cxx b/tests/universal/network/cancellation.cxx index 66a8b57f..049ce4fb 100644 --- a/tests/universal/network/cancellation.cxx +++ b/tests/universal/network/cancellation.cxx @@ -88,7 +88,8 @@ void test_get() { Session::GetOptions opt; opt.cancellation_token = ct; - auto replies = session2.get(ke, "", channels::FifoChannel(3), std::move(opt)); + ZResult _err; + auto replies = session2.get(ke, "", channels::FifoChannel(3), std::move(opt), &_err); std::this_thread::sleep_for(1s); auto res = replies.try_recv(); assert(std::holds_alternative(res)); @@ -162,7 +163,8 @@ void test_querier_get() { Querier::GetOptions opt; opt.cancellation_token = ct; - auto replies = querier.get("", channels::FifoChannel(3), std::move(opt)); + ZResult _err; + auto replies = querier.get("", channels::FifoChannel(3), std::move(opt), &_err); std::this_thread::sleep_for(1s); auto res = replies.try_recv(); assert(std::holds_alternative(res)); @@ -213,7 +215,8 @@ void test_liveliness_get() { Session::LivelinessGetOptions opt; opt.cancellation_token = ct; - auto replies = session2.liveliness_get(ke, channels::FifoChannel(3), std::move(opt)); + ZResult _err; + auto replies = session2.liveliness_get(ke, channels::FifoChannel(3), std::move(opt), &_err); std::this_thread::sleep_for(1s); auto res = replies.try_recv(); assert(std::holds_alternative(res)); diff --git a/zenoh-pico b/zenoh-pico index 2caeff14..d5ae9d9b 160000 --- a/zenoh-pico +++ b/zenoh-pico @@ -1 +1 @@ -Subproject commit 2caeff145b90519643f2a8df7e22084241e54695 +Subproject commit d5ae9d9bbdc0a917f130aa99990344354d51b3a9