diff options
| -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, |
