Merge pull request #660 from wunter8/remove-redundant-poll-param

remove redundant ?poll=1 query param
This commit is contained in:
Philipp C. Heckel 2023-03-07 15:04:18 -05:00 committed by GitHub
commit fd6e470f3c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -137,9 +137,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())
}