Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ use pyo3::{

use crate::{
bytes::{Encoding, ZBytes},
config::ZenohId,
handlers::{into_handler, HandlerImpl},
key_expr::KeyExpr,
macros::{build, downcast_or_new, enum_mapper, option_wrapper, wrapper},
qos::{CongestionControl, Priority},
session::EntityGlobalId,
utils::{generic, wait, IntoPyResult, IntoPython, IntoRust, MapInto},
};

Expand Down Expand Up @@ -223,7 +223,7 @@ impl Reply {
}

#[getter]
fn replier_id(&self) -> Option<ZenohId> {
fn replier_id(&self) -> Option<EntityGlobalId> {
self.0.replier_id().map_into()
}

Expand Down
2 changes: 1 addition & 1 deletion zenoh/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ class Reply:
def err(self) -> ReplyError | None: ...
@property
@_unstable
def replier_id(self) -> ZenohId | None: ...
def replier_id(self) -> EntityGlobalId | None: ...

@final
class ReplyError:
Expand Down
Loading