test(kafka): disable overload protection in 2 more places
This commit is contained in:
parent
9d30a52910
commit
c869eff6e8
|
@ -277,6 +277,9 @@ kafka_bridge_rest_api_helper(Config) ->
|
||||||
},
|
},
|
||||||
<<"kafka">> => #{
|
<<"kafka">> => #{
|
||||||
<<"topic">> => erlang:list_to_binary(KafkaTopic),
|
<<"topic">> => erlang:list_to_binary(KafkaTopic),
|
||||||
|
<<"buffer">> => #{
|
||||||
|
<<"memory_overload_protection">> => <<"false">>
|
||||||
|
},
|
||||||
<<"message">> => #{
|
<<"message">> => #{
|
||||||
<<"key">> => <<"${clientid}">>,
|
<<"key">> => <<"${clientid}">>,
|
||||||
<<"value">> => <<"${.payload}">>
|
<<"value">> => <<"${.payload}">>
|
||||||
|
@ -384,6 +387,13 @@ t_failed_creation_then_fix(Config) ->
|
||||||
"kafka_hosts_string" => HostsString,
|
"kafka_hosts_string" => HostsString,
|
||||||
"kafka_topic" => KafkaTopic,
|
"kafka_topic" => KafkaTopic,
|
||||||
"instance_id" => ResourceId,
|
"instance_id" => ResourceId,
|
||||||
|
"producer" => #{
|
||||||
|
"kafka" => #{
|
||||||
|
"buffer" => #{
|
||||||
|
"memory_overload_protection" => false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"ssl" => #{}
|
"ssl" => #{}
|
||||||
}),
|
}),
|
||||||
%% creates, but fails to start producers
|
%% creates, but fails to start producers
|
||||||
|
|
Loading…
Reference in New Issue