update-12.11

This commit is contained in:
github-actions[bot]
2021-12-11 09:03:05 +08:00
parent 8cbdbef469
commit 72c973e327
24 changed files with 8826 additions and 9592 deletions

View File

@@ -8,8 +8,8 @@ include $(TOPDIR)/rules.mk
LUCI_TITLE:=LuCI support for SSR Mudb Server
LUCI_DEPENDS:=+libsodium +luci-lib-jsonc +python3
LUCI_PKGARCH:=all
PKG_VERSION:=10
PKG_DATE:=20200619
PKG_VERSION:=11
PKG_DATE:=20211211
include $(TOPDIR)/feeds/luci/luci.mk

View File

@@ -41,7 +41,7 @@ except:
SWEEP_MAX_ITEMS = 1024
class LRUCache(collections.MutableMapping):
class LRUCache(collections.abc.MutableMapping):
"""This class is not thread safe"""
def __init__(self, timeout=60, close_callback=None, *args, **kwargs):

View File

@@ -109,7 +109,7 @@ class OrderedDict(dict):
for k in self:
yield (k, self[k])
update = collections.MutableMapping.update
update = collections.abc.MutableMapping.update
__update = update # let subclasses override update without breaking __init__