Hello guys,
We are working with the Jira Assets API and generally find it okay; however, we are occasionally encountering undocumented errors. Recently, we received the following error:
{ result: 'error', errorCode: 'INGESTING_FINISHED' }
This error occurred while attempting to add data with the following code:
const res = await api.asApp().requestJira(
route`/jsm/assets/workspace/${workspaceId}/v1/importsource/${importId}/executions/${executionId}/data`,
{
method: "POST",
body: JSON.stringify({ data: data }),
headers: {
Accept: "application/json",
"Content-Type": "application/json",
},
}
);
if (!res.ok) {
const responseBody = await res.json();
console.log("Failed to upload data chunk with response:", responseBody);
}
The error seems to indicate that data was not added, but we cannot identify the exact cause or reason for the INGESTING_FINISHED
error. We would appreciate any clarification on what this error means
Thank you for your ideas