From 2a40fda881ec5183fe4788060c3ef79df74ceb5e Mon Sep 17 00:00:00 2001 From: Sandy Date: Thu, 6 Jul 2023 15:35:16 -0500 Subject: [PATCH] Oops, forgot to update the connector interface Signed-off-by: Sandy --- connector.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connector.go b/connector.go index 362f24f..db49bb6 100644 --- a/connector.go +++ b/connector.go @@ -9,7 +9,7 @@ import ( // when connecting to them and by users to send pools around as well. type PoolConnector[O any] interface { // Submit will submit a job to the connected (parent) pool. - Submit(O) + Submit(O) error // signalForChildren will have a signal go through it when the // connected (parent) pool is closing, therefore, letting know