From 1b6ca3afd202a68ebe00fa135ff01a70fc9e3ce1 Mon Sep 17 00:00:00 2001 From: Alexander Bushnev Date: Thu, 8 Feb 2024 09:53:02 +0100 Subject: [PATCH 1/2] Enable logging interceptor --- zenoh/src/net/routing/interceptor/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zenoh/src/net/routing/interceptor/mod.rs b/zenoh/src/net/routing/interceptor/mod.rs index 7503580405..3abfad67e7 100644 --- a/zenoh/src/net/routing/interceptor/mod.rs +++ b/zenoh/src/net/routing/interceptor/mod.rs @@ -47,8 +47,8 @@ pub(crate) type InterceptorFactory = Box Vec { // Add interceptors here // @TODO build the list of intercetors with the correct order from the config - // vec![Box::new(LoggerInterceptor {})] - vec![] + vec![Box::new(LoggerInterceptor {})] + //vec![] } pub(crate) struct InterceptorsChain { From 180086b32911872100fce6af0710084cccc9309a Mon Sep 17 00:00:00 2001 From: Alexander Bushnev Date: Thu, 8 Feb 2024 15:19:31 +0100 Subject: [PATCH 2/2] force ci test --- io/zenoh-links/zenoh-link-unixpipe/src/unix/unicast.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/io/zenoh-links/zenoh-link-unixpipe/src/unix/unicast.rs b/io/zenoh-links/zenoh-link-unixpipe/src/unix/unicast.rs index 156698d195..6dad8abc15 100644 --- a/io/zenoh-links/zenoh-link-unixpipe/src/unix/unicast.rs +++ b/io/zenoh-links/zenoh-link-unixpipe/src/unix/unicast.rs @@ -494,6 +494,7 @@ impl LinkUnicastTrait for UnicastPipe { #[inline(always)] fn is_reliable(&self) -> bool { + // test true }