While working on #349 we split out the Jira adapter into two separate adapters, jira-server and jira-cloud in #354. However, due to tickety-tick going through all adapter for a page concurrently and the deciding factor for the jira-server adapter also works for Jira cloud, we can't guarantee that the jira-server adapter will only apply for Jira Server instances, but also for Cloud.
This is fine for now, as the extension is not "broken" for Jira any more. Still, it would make sense to fix that with a more deterministic solution. See this comment for some background.
The idea is: combine the two Jira adapters in one and bake the decision for which API to use in there. (Note: this does not mean there can't be two Jira adapters - search should just talk to one singular entry point for Jira).
While working on #349 we split out the Jira adapter into two separate adapters,
jira-serverandjira-cloudin #354. However, due to tickety-tick going through all adapter for a page concurrently and the deciding factor for thejira-serveradapter also works for Jira cloud, we can't guarantee that thejira-serveradapter will only apply for Jira Server instances, but also for Cloud.This is fine for now, as the extension is not "broken" for Jira any more. Still, it would make sense to fix that with a more deterministic solution. See this comment for some background.
The idea is: combine the two Jira adapters in one and bake the decision for which API to use in there. (Note: this does not mean there can't be two Jira adapters -
searchshould just talk to one singular entry point for Jira).