diff options
| author | Loïc Hoguin <[email protected]> | 2025-10-03 13:38:23 +0200 |
|---|---|---|
| committer | Loïc Hoguin <[email protected]> | 2025-10-03 13:38:23 +0200 |
| commit | 2a49992cfa1a7098ffc44cf8cb1cc46a1876895e (patch) | |
| tree | 5f318c4b8b96db92c64b301861baa2a2c3a94213 | |
| parent | aadc095d33c218b70753bc20ed9abe190ab428a9 (diff) | |
| download | cowboy-experiment-problem-matchers.tar.gz cowboy-experiment-problem-matchers.tar.bz2 cowboy-experiment-problem-matchers.zip | |
Experimentexperiment-problem-matchers
| -rw-r--r-- | .github/workflows/ci.yaml | 1 | ||||
| -rw-r--r-- | src/cowboy.erl | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f78333b..1735429 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -18,7 +18,6 @@ concurrency: jobs: check: name: Check - if: ${{ !cancelled() }} uses: ninenines/ci.erlang.mk/.github/workflows/ci.yaml@master examples: diff --git a/src/cowboy.erl b/src/cowboy.erl index 03580c8..a79417b 100644 --- a/src/cowboy.erl +++ b/src/cowboy.erl @@ -66,6 +66,7 @@ start_tls(Ref, TransOpts0, ProtoOpts0) -> TransOpts1 = ranch:normalize_opts(TransOpts0), {TransOpts2, DynamicBuffer} = ensure_dynamic_buffer(TransOpts1, ProtoOpts0), TransOpts3 = ensure_alpn(TransOpts2), + Abc = 1, {TransOpts, ConnectionType} = ensure_connection_type(TransOpts3), ProtoOpts = ProtoOpts0#{ connection_type => ConnectionType, |
