From a4ecf391574a1df019dbcd7cefdf633d9e52edfb Mon Sep 17 00:00:00 2001 From: Daniil Fajnberg Date: Wed, 27 Apr 2022 17:02:34 +0200 Subject: [PATCH] Fix socket path bug in control client --- setup.cfg | 2 +- src/asyncio_taskpool/control/__main__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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'