Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Reset logging name for MemPool components
  • Loading branch information
rozhkovdmitrii committed Apr 11, 2022
commit 3a695d5e3d622e9eb5f03d26194da02685b49890
2 changes: 1 addition & 1 deletion proxy/mempool/mem_pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from multiprocessing import Pool


@logged_group("neon.Proxy")
@logged_group("neon.MemPool")
class MemPool:

POOL_PROC_COUNT = 20
Expand Down
2 changes: 1 addition & 1 deletion proxy/mempool/mempool_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from . import MemPoolService


@logged_group("neon")
@logged_group("neon.Proxy")
class MemPoolClient(QueueBasedServiceClient):

MEM_POOL_SERVICE_HOST = "127.0.0.1"
Expand Down
2 changes: 1 addition & 1 deletion proxy/mempool/mempool_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from .mem_pool import MemPool


@logged_group("neon")
@logged_group("neon.MemPool")
class MemPoolService(QueueBasedService):

MEM_POOL_SERVICE_PORT = 9091
Expand Down