Project

Profile

Help

Story #6460

Updated by pulpbot about 2 years ago

 

 **Ticket moved to GitHub**: "pulp/pulpcore/1880":https://github.com/pulp/pulpcore/issues/1880 




 ---- 


 ## Problem 

 Users of pulp-certguard need a way to accept larger header at the pulpcore-content app. In practice the aiohttp default of 8190 bytes is too small for the headers Katello wants to use for example. 

 ## Solution 

 Add an optional setting named `MAX_HEADER_SIZE` which defaults to None. It accepts integer values in bytes that should be allowed. So for example, to specify a maximum header size of 16380 you would use dynaconf to set the value: 

 `MAX_HEADER_SIZE = 16380`. 

 

Back