Hello,
we face an issue that certain URLs cannot be found by JQL.
For instance, I can easily search and find URLs using:
`text ~ "https://github.com/beliaev-maksim/test-ci/issues/69"`
but then when we do search using the same mechanism but for a different URL, JQL returns None
`text ~"https://github.com/canonical/testflinger/issues/29"`
although it works if we break it into parts:
text ~ "https://github.com/canonical" and text ~ "testflinger" and text ~ "issues/29"
The solution is to employ an exact search string, allowing for a precise search for the given URL. This approach serves as a workaround for the issue.
text ~ "\"https://github.com/canonical/testflinger/issues/29\""
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.