Browse Source

Merge pull request #11087 from peter-stadler/uwsgi

uwsgi: fix dead-lock issue under heavy load
lilik-openwrt-22.03
Hannu Nyman 5 years ago
committed by GitHub
parent
commit
8eab02fda1
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      net/uwsgi/Makefile
  2. +1
    -1
      net/uwsgi/files-luci-support/luci-cgi_io.ini
  3. +1
    -1
      net/uwsgi/files-luci-support/luci-webui.ini

+ 1
- 1
net/uwsgi/Makefile View File

@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=uwsgi
PKG_VERSION:=2.0.18
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_SOURCE:=uwsgi-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL=https://files.pythonhosted.org/packages/source/u/uwsgi/


+ 1
- 1
net/uwsgi/files-luci-support/luci-cgi_io.ini View File

@ -12,7 +12,7 @@ chdir = /usr/lib/lua/luci/
buffer-size = 10000
reload-mercy = 8
max-requests = 2000
limit-as = 200
limit-as = 1000
reload-on-as = 256
reload-on-rss = 192
no-orphans = true


+ 1
- 1
net/uwsgi/files-luci-support/luci-webui.ini View File

@ -12,7 +12,7 @@ chdir = /usr/lib/lua/luci/
buffer-size = 10000
reload-mercy = 8
max-requests = 2000
limit-as = 200
limit-as = 1000
reload-on-as = 256
reload-on-rss = 192
enable-threads = true


Loading…
Cancel
Save