Skip to content

Commit 019a147

Browse files
Act on CI results: fix post-rebase issues
1 parent 835199d commit 019a147

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ for you. If you find yourself digging into the implementation of a
1515
webserver, then Elli might be for you. If you're building web services,
1616
not web sites, then Elli might be for you.
1717

18-
Elli requires OTP 20.0 or newer.
18+
Elli requires OTP 22.0 or newer.
1919

2020
## Installation
2121

rebar.config

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
{project_plugins, [
2929
{covertool, "2.0.6"},
30-
{rebar3_lint, "3.2.5"}
30+
{rebar3_lint, "3.2.5"},
3131
{rebar3_ex_doc, "0.2.23"}
3232
]}.
3333
{ex_doc, [
@@ -44,5 +44,4 @@
4444
{doc, #{provider => ex_doc}}
4545
]}.
4646

47-
{provider_hooks, [{pre, [{eunit, lint}]}]}.
4847
{dialyzer, [{plt_extra_apps, [ssl]}, {warnings, [unknown]}]}.

src/elli_http.erl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@
2525
%% operating in handler mode.
2626
-export([close_or_keepalive/2]).
2727

28+
-ifdef(TEST).
29+
-export([get_body/5]).
30+
-endif.
31+
2832
-export_type([version/0]).
2933

3034
-type version() :: {0, 9} | {1, 0} | {1, 1}.

0 commit comments

Comments
 (0)