0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-21 21:49:51 +01:00

fix(funnels): increase GET request size limit to 16k (#12381)

This commit is contained in:
Marius Andra 2022-10-21 14:27:10 +02:00 committed by GitHub
parent af613a8e64
commit 85b240aa21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,4 +22,4 @@ exec gunicorn posthog.wsgi \
--threads=8 \
--worker-class=gthread \
${STATSD_HOST:+--statsd-host $STATSD_HOST:$STATSD_PORT} \
--limit-request-line=8190 $@
--limit-request-line=16384 $@