mirror of
https://github.com/healthchecks/healthchecks.git
synced 2026-04-25 15:05:49 +03:00
[GH-ISSUE #333] can't query tags that contain certain characters #254
Labels
No labels
bug
bug
bug
feature
good-first-issue
new integration
pull-request
question
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/healthchecks#254
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @brammeleman on GitHub (Feb 17, 2020).
Original GitHub issue: https://github.com/healthchecks/healthchecks/issues/333
Hi,
I have some tags that contain equal signs in it. When using the API, I can't filter those particular checks.
For example, to get the checks that match "a=b", the query url would look like:
With the tag
a=burlencoded toa%3Dbbecause the querytag=a=bwould be nonsensical.This does not return any matches. I tried to figure out why this does not work.. without any result so far...
I did test tags with other funny characters, like
%,&and$in it (urlencoded) and that seems to work fine. A tag with!in it also fails to be queried.Bests,
Bram
@cuu508 commented on GitHub (Feb 18, 2020):
This looks good and should work. How does the request look in server's access log? Maybe the encoding goes wrong on client side, and the server sees something else.
@brammeleman commented on GitHub (Feb 18, 2020):
Excuse me, sorry for bothering you. There was an error in my testing code that altered the tags and therefore could not find them anymore. ;-)