From 50d6632845400004b2196a21f76108816dd033d0 Mon Sep 17 00:00:00 2001 From: JackDoan Date: Tue, 21 Apr 2026 14:52:28 -0500 Subject: [PATCH] fix --- overlay/noop.go | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/overlay/noop.go b/overlay/noop.go index 614c4241..8f14d7a9 100644 --- a/overlay/noop.go +++ b/overlay/noop.go @@ -42,8 +42,12 @@ func (NoopTun) SupportsMultiqueue() bool { return false } -func (NoopTun) NewMultiQueueReader() (tio.Queue, error) { - return nil, errors.New("unsupported") +func (NoopTun) NewMultiQueueReader() error { + return errors.New("unsupported") +} + +func (NoopTun) Readers() []tio.Queue { + return []tio.Queue{NoopTun{}} } func (NoopTun) Close() error {