Skip to content
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

Merge main into dev/1.0.0 #1326

Merged
merged 30 commits into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
ce43f58
Add NOTE for LowLatency transport. (#1088)
evshary Jun 5, 2024
c279982
fix: Improve debug messages in `zenoh-transport` (#1090)
fuzzypixelz Jun 5, 2024
0942a69
Improve pipeline backoff (#1097)
Mallets Jun 10, 2024
de78221
Add typos check to CI (#1065)
kilpkonn Jun 10, 2024
528b87a
Start link tx_task before notifying router (#1098)
Mallets Jun 10, 2024
d8e66de
Fix typos (#1110)
Mallets Jun 10, 2024
9d09742
bump quinn & rustls (#1086)
JLerxky Jun 11, 2024
ed6c636
Fix interface name scanning when listening on IP unspecified for TCP/…
Mallets Jun 12, 2024
8160b01
Enable releasing from any branch (#1136)
fuzzypixelz Jun 13, 2024
7adad94
Fix cargo clippy (#1145)
Mallets Jun 14, 2024
93f93d2
Release tables locks before propagating subscribers and queryables de…
OlivierHecart Jun 17, 2024
2500e5a
feat: make `TerminatableTask` terminate itself when dropped (#1151)
YuanYuYuan Jun 20, 2024
869ace6
Fix bug in keyexpr::includes leading to call get_unchecked on empty a…
OlivierHecart Jul 2, 2024
b93ca84
REST plugin uses unbounded flume channels for queries (#1213)
OlivierHecart Jul 3, 2024
b3e42ce
fix: typo in selector.rs (#1228)
diogomatsubara Jul 8, 2024
0a969cb
fix: zenohd --cfg (#1263)
YuanYuYuan Jul 25, 2024
65f7f88
Fix failover brokering bug reacting to linkstate changes (#1272)
OlivierHecart Jul 26, 2024
3b9e824
Code format
OlivierHecart Jul 26, 2024
664915a
Fix clippy warnings
OlivierHecart Jul 26, 2024
021f7c6
Code format
OlivierHecart Jul 26, 2024
e587aa9
Fix Clippy errors from Rust 1.80 (#1273)
fuzzypixelz Jul 26, 2024
2d88c7b
Update Cargo.toml (#1277)
kydos Jul 29, 2024
f47354c
fix: typos (#1297)
brian049 Aug 5, 2024
fef38dc
Replace trees computation tasks with a worker (#1303)
OlivierHecart Aug 9, 2024
e66745e
zenohd-default config error #1292 (#1298)
anhaabaete Aug 12, 2024
c61a0be
fix: typos (#1297)
brian049 Aug 5, 2024
c817e65
zenohd-default config error #1292 (#1298)
anhaabaete Aug 12, 2024
11811f9
Replace trees computation tasks with a worker (#1303)
OlivierHecart Aug 9, 2024
7c8c44d
Merge branch 'main' into merge_main
milyin Aug 27, 2024
7801908
revering fix https://github.com/eclipse-zenoh/zenoh/pull/1298
milyin Aug 27, 2024
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
2 changes: 1 addition & 1 deletion DEFAULT_CONFIG.json5
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@
/// Configure the zenoh RX parameters of a link
rx: {
/// Receiving buffer size in bytes for each link
/// The default the rx_buffer_size value is the same as the default batch size: 65335.
/// The default the rx_buffer_size value is the same as the default batch size: 65535.
/// For very high throughput scenarios, the rx_buffer_size can be increased to accommodate
/// more in-flight data. This is particularly relevant when dealing with large messages.
/// E.g. for 16MiB rx_buffer_size set the value to: 16777216.
Expand Down
2 changes: 1 addition & 1 deletion commons/zenoh-config/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ validated_struct::validator! {
},
pub rx: LinkRxConf {
/// Receiving buffer size in bytes for each link
/// The default the rx_buffer_size value is the same as the default batch size: 65335.
/// The default the rx_buffer_size value is the same as the default batch size: 65535.
/// For very high throughput scenarios, the rx_buffer_size can be increased to accommodate
/// more in-flight data. This is particularly relevant when dealing with large messages.
/// E.g. for 16MiB rx_buffer_size set the value to: 16777216.
Expand Down
Loading