From ee97e1110d3a56e9a96ec8fd0d82618191c243c3 Mon Sep 17 00:00:00 2001 From: Hunter Kehoe Date: Mon, 6 Mar 2023 18:46:38 -0700 Subject: [PATCH] remove redundant ?poll=1 query param --- cmd/subscribe.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/cmd/subscribe.go b/cmd/subscribe.go index bbc6fb33..f81ff4bf 100644 --- a/cmd/subscribe.go +++ b/cmd/subscribe.go @@ -126,9 +126,6 @@ func execSubscribe(c *cli.Context) error { } options = append(options, client.WithBasicAuth(user, pass)) } - if poll { - options = append(options, client.WithPoll()) - } if scheduled { options = append(options, client.WithScheduled()) }