1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-23 21:51:06 +01:00

check ulimit

This commit is contained in:
Rob Ede 2021-10-20 03:17:42 +01:00
parent 303666278a
commit 3e56eb1174
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933
3 changed files with 15 additions and 1 deletions

View File

@ -7,6 +7,18 @@ on:
branches: [master] branches: [master]
jobs: 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: build_and_test:
strategy: strategy:
fail-fast: false fail-fast: false

View File

@ -55,7 +55,7 @@ tokio-openssl = { version = "0.6", optional = true }
# rustls # rustls
tokio-rustls = { version = "0.23", optional = true } tokio-rustls = { version = "0.23", optional = true }
webpki-roots = { version = "0.21", optional = true } webpki-roots = { version = "0.22", optional = true }
# native-tls # native-tls
tokio-native-tls = { version = "0.3", optional = true } tokio-native-tls = { version = "0.3", optional = true }

View File

@ -22,6 +22,8 @@ mod error;
mod resolve; mod resolve;
mod service; mod service;
pub mod ssl; pub mod ssl;
#[doc(inline)]
pub use ssl as tls;
#[cfg(feature = "uri")] #[cfg(feature = "uri")]
mod uri; mod uri;