#Increase accepted header size of the Ballerina Http Listener
1 messages · Page 1 of 1 (latest)
@finite nimbus
You can use the RequestLimitConfigs[1] to overwrite the allowed header size.
[1]https://lib.ballerina.io/ballerina/http/2.5.2/records/RequestLimitConfigs
This is a part of ListenerConfiguration
Example :
http:ListenerConfiguration serverEP = {
requestLimits: {
maxHeaderSize: <size-in-bytes>
}
};