As part of migrating my system to the cloud I have to modify my script.
nn my server I used the function issueManager.getIssueObject("MyIssueKey")
In the cloud I am forced to use Rest request
example:
// Fetch the issue object from the key
def issue = get("/rest/api/2/issue/${issueKey}")
.header('Content-Type', 'application/json')
.asObject(Map)
.body
When I rub this request for an issue the response time is 500ms and above
any way to speed it up ?