From 898bfa51300af186872985e35f223ff54964f0bb Mon Sep 17 00:00:00 2001 From: Brandur Leach Date: Wed, 18 Sep 2024 08:00:28 -0700 Subject: [PATCH] Update client.go Co-authored-by: Blake Gentry --- client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.go b/client.go index 1a3c8972..25cfbd73 100644 --- a/client.go +++ b/client.go @@ -907,7 +907,7 @@ type SubscribeConfig struct { // Special internal variant that lets us inject an overridden size. func (c *Client[TTx]) SubscribeConfig(config *SubscribeConfig) (<-chan *Event, func()) { if c.subscriptionManager == nil { - panic("created a subscription on a client that will never work jobs (Workers not configure)") + panic("created a subscription on a client that will never work jobs (Workers not configured)") } return c.subscriptionManager.SubscribeConfig(config)