Hi, some time ago I had an issue with `HTTP header...
# troubleshoot
b
Hi, some time ago I had an issue with
HTTP header value exceeds the configured limit of 8192 characters
in frontend. I was able to work around it with env variables introduced in this PR and it worked on version
v0.8.44
. After upgrading to
v0.9.6.1
the issue is back. I suspect it has to do with renaming the configuration option in this commit. Not sure why it was done since akka documentation states it should be
max-header-value-length
.
🩺 1
a
Hi Karolis, just to clarify- is this now working on the new version for you, or is it still broken? I’ll log it as a docs fix
b
Hi, it's still broken.
a
ok, CC: @echoing-airport-49548
Will flag this for the team
e
Hi @bumpy-activity-74405! How you was able to fix this issue?
max-header-value-length
doesn't work for me.
b
It works for me. I just need to replace the
max-header-size
with
max-header-value-length
before I start my frontend pod. I do this currently by doing
sed -i 's/max-header-size/max-header-value-length/' /datahub-frontend/conf/application.conf
. I was hoping this would be fixed by now, but I see the issue is still there.