I am running my code in AWS Lambda function (consume events from an SQS):
One of the task is to create an issue (Operation-A) and then get it id/key and use them for another operation (Operation-B)
The problem is that if for any reason operation-B failed, the event will come back to the SQS and we will process it from scratch ( Re-Run Operation-A which already executed) and so on.
I tried to generate a UUID for each operation and use it as a custom field in jira during the creation but it fails with an error.
" custom field is not on a screen"