Skip to content

Commit

Permalink
drop! Don't set default features
Browse files Browse the repository at this point in the history
  • Loading branch information
omus committed Sep 24, 2021
1 parent 310c6c8 commit 5f69c45
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/AWS.jl
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ function (service::RestXMLService)(
request_uri::String,
args::AbstractDict{String,<:Any}=Dict{String,Any}();
aws_config::AbstractAWSConfig=global_aws_config(),
features::NamedTuple=DEFAULT_SERVICE_FEATURES,
features::NamedTuple,
)
features.use_response_type && _delete_legacy_response_kw_args!(args)

Expand Down Expand Up @@ -271,7 +271,7 @@ function (service::QueryService)(
operation::String,
args::AbstractDict{String,<:Any}=Dict{String,Any}();
aws_config::AbstractAWSConfig=global_aws_config(),
features::NamedTuple=DEFAULT_SERVICE_FEATURES,
features::NamedTuple,
)
features.use_response_type && _delete_legacy_response_kw_args!(args)

Expand Down Expand Up @@ -317,7 +317,7 @@ function (service::JSONService)(
operation::String,
args::AbstractDict{String,<:Any}=Dict{String,Any}();
aws_config::AbstractAWSConfig=global_aws_config(),
features::NamedTuple=DEFAULT_SERVICE_FEATURES,
features::NamedTuple,
)
features.use_response_type && _delete_legacy_response_kw_args!(args)

Expand Down Expand Up @@ -363,7 +363,7 @@ function (service::RestJSONService)(
request_uri::String,
args::AbstractDict{String,<:Any}=Dict{String,String}();
aws_config::AbstractAWSConfig=global_aws_config(),
features::NamedTuple=DEFAULT_SERVICE_FEATURES,
features::NamedTuple,
)
features.use_response_type && _delete_legacy_response_kw_args!(args)

Expand Down

0 comments on commit 5f69c45

Please sign in to comment.