We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9f4ed6 commit d05eef3Copy full SHA for d05eef3
.github/workflows/rust.yml
@@ -118,7 +118,7 @@ jobs:
118
119
steps:
120
- uses: actions/checkout@v4
121
- - uses: mozilla-actions/[email protected].4
+ - uses: mozilla-actions/[email protected].9
122
- uses: dtolnay/rust-toolchain@master
123
with:
124
toolchain: ${{ matrix.rust }}
quinn/src/tests.rs
@@ -317,8 +317,8 @@ impl EndpointFactory {
317
fn client_config(&self) -> ClientConfig {
318
let mut roots = rustls::RootCertStore::empty();
319
roots.add(self.cert.cert.der().clone()).unwrap();
320
- let client_config = ClientConfig::with_root_certificates(Arc::new(roots)).unwrap();
321
- client_config
+
+ ClientConfig::with_root_certificates(Arc::new(roots)).unwrap()
322
}
323
324
0 commit comments