Skip to content

Commit d9d9216

Browse files
author
Pablo Lopez
committed
fixed issue
1 parent 5f4b6f3 commit d9d9216

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rebar.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
{spellcheck,
4141
[{ignore_regex,
42-
"(eunit|~>|<-|//|=|[|]|[.]hrl|\\d[.]\\d|<<[\"]|[a-z][a-z][-][a-z]|[?][A-Z])"},
42+
"(eunit|~>|<-|//|=|[|]|[.]hrl|\\d[.]\\d|<<[\"]|[a-z][a-z][-][a-z]|[?][A-Z]|\/)"},
4343
{files, ["src/*"]},
4444
{additional_dictionaries, ["nextroll.dict", "kinesis.dict"]}]}.
4545

src/kinetic.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ execute(Operation, Payload, Opts) ->
282282
aws_date => Date},
283283
iolist_to_binary(Body))],
284284
Worker = ehttpc_pool:pick_worker(?EHTTPC_POOL),
285-
case ehttpc:request(Worker, post, {"", Headers, Body}, Timeout) of
285+
case ehttpc:request(Worker, post, {"/", Headers, Body}, Timeout) of
286286
{ok, 200, _, ResponseBody} ->
287287
{ok, kinetic_utils:decode(ResponseBody)};
288288
{ok, Code, RespHeaders, ResponseBody} ->

0 commit comments

Comments
 (0)