X-Git-Url: http://www.dolda2000.com/gitweb/?a=blobdiff_plain;f=python3%2Fashd-wsgi3;h=ba7038d422815d64084507adeb369e8fe8fbe7bd;hb=e0c88e73e0686a5fb12ec0e2a7303597a77fec30;hp=40a37224783c24e0eb21c7fd2bf6b323707e5b99;hpb=4881876d599616e6f010d244e4c15c4b3a6f2974;p=ashd.git diff --git a/python3/ashd-wsgi3 b/python3/ashd-wsgi3 index 40a3722..ba7038d 100755 --- a/python3/ashd-wsgi3 +++ b/python3/ashd-wsgi3 @@ -146,7 +146,7 @@ def mkenv(req): return env if reqlimit != 0: - guard = ashd.serve.calllimiter(reqlimit).call + guard = ashd.serve.abortlimiter(reqlimit).call else: guard = lambda fun: fun() @@ -158,7 +158,7 @@ def recode(thing): class reqthread(ashd.serve.wsgithread): def __init__(self, req): - super().__init__(name = "Request handler") + super().__init__() self.req = req.dup() def handlewsgi(self):