Skip to content

Commit

Permalink
test(kafka): disable overload protection in 2 more places
Browse files Browse the repository at this point in the history
  • Loading branch information
id committed Feb 20, 2023
1 parent 9d30a52 commit c869eff
Showing 1 changed file with 10 additions and 0 deletions.
Expand Up @@ -277,6 +277,9 @@ kafka_bridge_rest_api_helper(Config) ->
},
<<"kafka">> => #{
<<"topic">> => erlang:list_to_binary(KafkaTopic),
<<"buffer">> => #{
<<"memory_overload_protection">> => <<"false">>
},
<<"message">> => #{
<<"key">> => <<"${clientid}">>,
<<"value">> => <<"${.payload}">>
Expand Down Expand Up @@ -384,6 +387,13 @@ t_failed_creation_then_fix(Config) ->
"kafka_hosts_string" => HostsString,
"kafka_topic" => KafkaTopic,
"instance_id" => ResourceId,
"producer" => #{
"kafka" => #{
"buffer" => #{
"memory_overload_protection" => false
}
}
},
"ssl" => #{}
}),
%% creates, but fails to start producers
Expand Down

0 comments on commit c869eff

Please sign in to comment.