You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi,
I am running into an issue where calling my lambda function locally through serverless offline runs smoothly and updates the Jira Issue successfully with the payload I passed in.
But when I deploy the Lambda to AWS and then trigger the function through Postman with the same payload, the connection to the Jira API times out.
Here is a snippet of my lambda service:
import { Version3Client } from "jira.js";
export const client = new Version3Client({
host: process.env["JIRA_HOST"],
authentication: {
basic: {
email: process.env["JIRA_USERNAME"],
apiToken: process.env["JIRA_API_TOKEN"],
},
},
newErrorHandling: true,
});
client.issues.editIssue(
{
issueIdOrKey: issueKey,
fields: {
...convertedPayload,
},
},
);
As I stated above, when triggered locally through Postman and serverless offline, this code will update the ticket on my board on Jira within a second without any issues.
But when deploying to AWS Lambda and calling the API Gateway endpoint that triggers the lambda through Postman, the call to Jira will hang until it times out.
Does anyone know what may be happening? I figure that Jira is blocking the call.
Any help is appreciated. Cheers
I ended up solving the issue. It turned out to be an async issue where a call was never returned correctly, so the Lambda service calling the Jira API just timed out waiting for a response.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.