From 3e56eb11741e71458030c93091b7ea1e4d96faf4 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Wed, 20 Oct 2021 03:17:42 +0100 Subject: [PATCH] check ulimit --- .github/workflows/ci.yml | 12 ++++++++++++ actix-tls/Cargo.toml | 2 +- actix-tls/src/connect/mod.rs | 2 ++ 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9a0b9c1f..7fd1ee21 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,6 +7,18 @@ on: branches: [master] jobs: + check_ulimit: + name: check ulimit (temp) + runs-on: ubuntu-latest + steps: + - name: check ulimit + run: | + which sudo || true + ulimit -a || true + sudo ulimit -a || true + ulimit -l 512 || true + sudo ulimit -l 512 || true + build_and_test: strategy: fail-fast: false diff --git a/actix-tls/Cargo.toml b/actix-tls/Cargo.toml index 6bf8ec62..c4cca9de 100755 --- a/actix-tls/Cargo.toml +++ b/actix-tls/Cargo.toml @@ -55,7 +55,7 @@ tokio-openssl = { version = "0.6", optional = true } # rustls tokio-rustls = { version = "0.23", optional = true } -webpki-roots = { version = "0.21", optional = true } +webpki-roots = { version = "0.22", optional = true } # native-tls tokio-native-tls = { version = "0.3", optional = true } diff --git a/actix-tls/src/connect/mod.rs b/actix-tls/src/connect/mod.rs index ad4f40a3..6b4220ec 100644 --- a/actix-tls/src/connect/mod.rs +++ b/actix-tls/src/connect/mod.rs @@ -22,6 +22,8 @@ mod error; mod resolve; mod service; pub mod ssl; +#[doc(inline)] +pub use ssl as tls; #[cfg(feature = "uri")] mod uri;