Dont use relative import on ringd
parent
dfc0254995
commit
eef98bc826
|
@ -34,10 +34,8 @@ import trio
|
||||||
import tractor
|
import tractor
|
||||||
from tractor.linux import send_fds, recv_fds
|
from tractor.linux import send_fds, recv_fds
|
||||||
|
|
||||||
from . import (
|
import tractor.ipc._ringbuf as ringbuf
|
||||||
RBToken,
|
from tractor.ipc._ringbuf import RBToken
|
||||||
open_ringbuf as ipc_open_ringbuf
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
log = tractor.log.get_logger(__name__)
|
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}'
|
f'Tried to open_ringbuf but it doesn\'t exist: {name}'
|
||||||
)
|
)
|
||||||
|
|
||||||
with ipc_open_ringbuf(
|
with ringbuf.open_ringbuf(
|
||||||
_root_key + name,
|
_root_key + name,
|
||||||
buf_size=buf_size
|
buf_size=buf_size
|
||||||
) as token:
|
) as token:
|
||||||
|
|
Loading…
Reference in New Issue