From dce7e13d0f27d85a63f65c28b0be3a98992206a2 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Thu, 27 Nov 2025 08:56:09 -0500 Subject: [PATCH] update error message --- router.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/router.go b/router.go index 5d4179e..4acf029 100644 --- a/router.go +++ b/router.go @@ -163,5 +163,5 @@ func (r *Router) HandleOutput(destinationId string, payload any) error { return moduleInstance.Output(payload) } } - return fmt.Errorf("no module instance found for destination %s", destinationId) + return fmt.Errorf("router could not find module instance for destination %s", destinationId) }