Skip to content

Commit 9087cc3

Browse files
committed
fix(s2n-quic-dc): resolve restart test flakiness on MacOS
1 parent 995f37b commit 9087cc3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dc/s2n-quic-dc/src/stream/tests/restart.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ impl Harness {
9898
}
9999

100100
async fn run_one(&self, bidirectional: bool, sleep_before_shutdown: bool) {
101-
tracing::info!(bidirectional, sleep_before_shutdown);
101+
tracing::debug!(bidirectional, sleep_before_shutdown);
102102
let context = Context::bind(self.protocol, "127.0.0.1:0".parse().unwrap()).await;
103103

104104
check_stream(&context, bidirectional, sleep_before_shutdown)
@@ -117,7 +117,7 @@ impl Harness {
117117

118118
// This might fail, we don't care. At least two streams should fail before we
119119
// manage to successfully establish after dropping state.
120-
tracing::info!(
120+
tracing::debug!(
121121
"initial: {:?}",
122122
tokio::time::timeout(
123123
Duration::from_secs(2),
@@ -132,7 +132,7 @@ impl Harness {
132132

133133
// This should enqueue a recovery handshake. This used to be something we'd *wait* for, but
134134
// now we just do that in the background; this should still fail.
135-
tracing::info!(
135+
tracing::debug!(
136136
"recovery handshake: {:?}",
137137
tokio::time::timeout(
138138
Duration::from_secs(2),

0 commit comments

Comments
 (0)