mirror of
https://github.com/goauthentik/authentik
synced 2026-04-25 17:15:26 +02:00
packages/django-dramatiq-postgres: fix default value for HTTPServerThread (#21216)
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
5
.gitattributes
vendored
5
.gitattributes
vendored
@@ -1,6 +1,9 @@
|
||||
packages/client-* linguist-generated
|
||||
packages/client-*/** linguist-generated
|
||||
web/packages/lex/* linguist-vendored
|
||||
web/packages/node-domexception/* linguist-vendored
|
||||
web/packages/formdata-polyfill/* linguist-vendored
|
||||
web/packages/sfe/vendored/* linguist-vendored
|
||||
website/vendored/* linguist-vendored
|
||||
website/docs/** linguist-documentation
|
||||
website/integrations/** linguist-documentation
|
||||
website/api/** linguist-documentation
|
||||
|
||||
@@ -27,7 +27,7 @@ class HTTPServerThread(Thread):
|
||||
"""Base class for a thread which runs an HTTP Server. Mainly used for typing
|
||||
the `server` instance variable."""
|
||||
|
||||
server: HTTPServer | None
|
||||
server: HTTPServer | None = None
|
||||
|
||||
|
||||
class HTTPServer(BaseHTTPServer):
|
||||
|
||||
Reference in New Issue
Block a user