I am working on a plugin to be deployed to the Atlasian market place for Jira cloud. I am leveraging Forge, ui-kit and the various apis.
While testing against my developer cloud environment, chriswininger.atlasian.com I get intermittent but frequent DNS lookup failures from the jira api, errors such as this:
`getaddrinfo EAI_AGAIN api.atlassian.com`
An example code snippet that results in this would be:
```
resp = await api.asApp().requestJira(route`/rest/api/3/issue`, {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify(body)
});
```
It is making development and testing extremely difficult and I'm concerned about how this might perform in production. Is there any insight into why I am seeing this you can offer and/or any advice on how to prevent it?
Hello, Good day. Please post your in https://community.developer.atlassian.com/ as well.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.