We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d40dae commit d8e6d0aCopy full SHA for d8e6d0a
1 file changed
pkg/docker/entrypoint.sh
@@ -191,6 +191,9 @@ fi
191
192
if [ "${GUNICORN_ACCESS_LOGFILE:--}" = "-" ]; then
193
ACCESS_LOG_ARGS="--access-log"
194
+elif [ -n "${GUNICORN_ACCESS_LOGFILE}" ]; then
195
+ echo "Warning: GUNICORN_ACCESS_LOGFILE file paths are not supported with Granian. Access logging disabled." >&2
196
+ ACCESS_LOG_ARGS="--no-access-log"
197
else
198
ACCESS_LOG_ARGS="--no-access-log"
199
fi
0 commit comments