diff --git a/setup.cfg b/setup.cfg index 303db93..a96b408 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = asyncio-taskpool -version = 1.0.2 +version = 1.0.3 author = Daniil Fajnberg author_email = mail@daniil.fajnberg.de description = Dynamically manage pools of asyncio tasks diff --git a/src/asyncio_taskpool/control/__main__.py b/src/asyncio_taskpool/control/__main__.py index adbc630..22eed18 100644 --- a/src/asyncio_taskpool/control/__main__.py +++ b/src/asyncio_taskpool/control/__main__.py @@ -35,7 +35,7 @@ __all__ = [] CLIENT_CLASS = 'client_class' UNIX, TCP = 'unix', 'tcp' -SOCKET_PATH = 'path' +SOCKET_PATH = 'socket_path' HOST, PORT = 'host', 'port'