[Fix] Clean
Some checks failed
CI / checks (push) Failing after 16m34s

This commit is contained in:
Alex Emmet 2026-08-18 21:53:02 +02:00
commit b331b9f6a3
No known key found for this signature in database
12 changed files with 433 additions and 75 deletions

View file

@ -1460,9 +1460,11 @@ mod tests {
#[test]
fn runtime_policy_normalizes_zero_channel_and_task_limits() {
let mut policy = Policy::default();
policy.receiver_queue_capacity = 0;
policy.max_concurrent_stream_tasks = 0;
let policy = Policy {
receiver_queue_capacity: 0,
max_concurrent_stream_tasks: 0,
..Policy::default()
};
let runtime = RuntimePolicy::from_public(&policy);