-
Notifications
You must be signed in to change notification settings - Fork 172
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
stabilize liveliness API #1646
stabilize liveliness API #1646
Changes from all commits
f203222
c6740a1
c1208fa
56b5ac9
dd2ca37
5274d55
7111b54
857ba11
b1db843
81bf52e
7c1164e
3956665
6b9647c
73be16e
ce4ff0b
aaa2d69
dd7fc3d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ default = [] | |
[dependencies] | ||
tokio = { workspace = true, features = ["rt", "sync", "time", "macros", "io-std"] } | ||
futures = { workspace = true } | ||
zenoh = { workspace = true, features = ["unstable"], default-features = false } | ||
zenoh = { workspace = true, features = ["unstable", "internal_config"], default-features = false } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why there is the need of enabling There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. zenoh-ext uses direct access to config fields. Before it was hidden as the "unstable" included "internal_config" |
||
clap = { workspace = true, features = ["derive"] } | ||
zenoh-ext = { workspace = true, features = ["unstable"] } | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why there is the need of enabling
internal_config
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The liveliness test (and maybe others) uses direct access to config which is under this feature. I wanted to enable zenoh tests in stable mode so I had to detach
internal_config
fromunstable
#1654