Dont use relative import on ringd

one_ring_to_rule_them_all
Guillermo Rodriguez 2025-04-02 15:17:56 -03:00
parent dfc0254995
commit eef98bc826
No known key found for this signature in database
GPG Key ID: 002CC5F1E6BDA53E
1 changed files with 3 additions and 5 deletions

View File

@ -34,10 +34,8 @@ import trio
import tractor
from tractor.linux import send_fds, recv_fds
from . import (
RBToken,
open_ringbuf as ipc_open_ringbuf
)
import tractor.ipc._ringbuf as ringbuf
from tractor.ipc._ringbuf import RBToken
log = tractor.log.get_logger(__name__)
@ -141,7 +139,7 @@ async def _open_ringbuf(
f'Tried to open_ringbuf but it doesn\'t exist: {name}'
)
with ipc_open_ringbuf(
with ringbuf.open_ringbuf(
_root_key + name,
buf_size=buf_size
) as token: