Skip to content

Commit

Permalink
Merge pull request #126 from lpgauth/upkepp/OTP-26
Browse files Browse the repository at this point in the history
Add support for OTP-26
  • Loading branch information
lpgauth authored May 4, 2023
2 parents 41e2e97 + fe406a8 commit a99391f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

{deps, [
{foil, "0.1.3"},
{granderl, {git, "https://github.com/tokenrove/granderl.git", {ref, "e1ec2ea981e6aa9a36ad4bc291b0b56c39e1e646"}}},
{granderl, {git, "https://github.com/tokenrove/granderl.git", {ref, "baafd1bc825cb1fc022760eae913f774fa6af91b"}}},
{metal, "0.1.1"}
]}.

Expand All @@ -22,10 +22,10 @@

{erl_opts, [
debug_info,
{platform_define, "^21.3|^22|^23|^24|^25", 'ATOMICS'},
{platform_define, "^23|^24|^25", 'DECENTRALIZED_COUNTERS'},
{platform_define, "^21.3|^22|^23|^24|^25|^26", 'ATOMICS'},
{platform_define, "^23|^24|^25|^26", 'DECENTRALIZED_COUNTERS'},
{platform_define, "^18|^19|^2", 'ETS_TAKE'},
{platform_define, "^21|^22|^23|^24|^25", 'SSL_HANDSHAKE'}
{platform_define, "^21|^22|^23|^24|^25|^26", 'SSL_HANDSHAKE'}
]}.

{plugins, [rebar3_hex]}.
Expand Down
2 changes: 1 addition & 1 deletion rebar.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[{<<"foil">>,{pkg,<<"foil">>,<<"0.1.3">>},0},
{<<"granderl">>,
{git,"https://github.com/tokenrove/granderl.git",
{ref,"e1ec2ea981e6aa9a36ad4bc291b0b56c39e1e646"}},
{ref,"baafd1bc825cb1fc022760eae913f774fa6af91b"}},
0},
{<<"metal">>,{pkg,<<"metal">>,<<"0.1.1">>},0}]}.
[
Expand Down
3 changes: 2 additions & 1 deletion test/arithmetic_ssl_client.erl
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ start(PoolOptions) ->
{reconnect_time_min, 1},
{socket_options, [
binary,
{packet, raw}
{packet, raw},
{verify, verify_none}
]}
], PoolOptions).

Expand Down

0 comments on commit a99391f

Please sign in to comment.