Skip to content

Commit

Permalink
Merge pull request #661 from erlcloud/fix_elb_cfg
Browse files Browse the repository at this point in the history
Use actual config param in describe_load_balancers_all()
  • Loading branch information
Evgeny Bob committed Sep 24, 2020
2 parents be597d9 + c652762 commit ea741ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/erlcloud_elb.erl
Expand Up @@ -245,7 +245,7 @@ describe_load_balancers_all() ->
-spec describe_load_balancers_all(list(string()) | aws_config()) ->
{ok, [term()]} | {error, term()}.
describe_load_balancers_all(Config) when is_record(Config, aws_config) ->
describe_load_balancers_all([], default_config());
describe_load_balancers_all([], Config);
describe_load_balancers_all(Names) ->
describe_load_balancers_all(Names, default_config()).

Expand Down

0 comments on commit ea741ea

Please sign in to comment.