We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fe6597 commit bdb55f1Copy full SHA for bdb55f1
stubs/gunicorn/gunicorn/arbiter.pyi
@@ -1,10 +1,10 @@
1
-import socket
2
from types import FrameType
3
from typing import ClassVar
4
5
from gunicorn.app.base import BaseApplication
6
from gunicorn.config import Config
7
from gunicorn.glogging import Logger as GLogger
+from gunicorn.sock import BaseSocket
8
from gunicorn.workers.base import Worker
9
10
from ._types import _AddressType
@@ -14,7 +14,7 @@ class Arbiter:
14
WORKER_BOOT_ERROR: ClassVar[int]
15
APP_LOAD_ERROR: ClassVar[int]
16
START_CTX: ClassVar[dict[int | str, str | list[str]]]
17
- LISTENERS: ClassVar[list[socket.socket]]
+ LISTENERS: ClassVar[list[BaseSocket]]
18
WORKERS: ClassVar[dict[int, Worker]]
19
PIPE: ClassVar[list[int]]
20
SIG_QUEUE: ClassVar[list[int]]
0 commit comments