Hi Atlassian,
I want to draw you attention on bug that we are facing at the time of Spint Closing and Staring a new Sprint from the Sprint Api end.
Flow we are following -- Closing the ongoing Sprint and then Starting a new sprint, but if you look into the api of Sprint detail's its
showing reverse, Sprint "startDate" time is before the last sprint "complete Date" time by 20-30 sec, which indicates that new sprint got started before the last sprint got closed which is not actually happening.
As we are using this Api in our project it leads some discrepancy.
Example:
https://nipponhcl.atlassian.net/rest/agile/1.0/board/81/sprint
{
"maxResults": 50,
"startAt": 0,
"total": 2,
"isLast": true,
"values": [
{
"id": 424,
"self": "https://nipponhcl.atlassian.net/rest/agile/1.0/sprint/424",
"state": "closed",
"name": "DotNet Sprint 1",
"startDate": "2024-02-07T10:47:00.000Z",
"endDate": "2024-02-20T11:17:00.000Z",
"completeDate": "2024-02-21T04:56:49.251Z",
"createdDate": "2024-02-06T10:07:40.567Z",
"originBoardId": 81,
"goal": ""
},
{
"id": 434,
"self": "https://nipponhcl.atlassian.net/rest/agile/1.0/sprint/434",
"state": "active",
"name": "DotNet Sprint 2",
"startDate": "2024-02-21T04:56:04.087Z",
"endDate": "2024-03-05T11:17:00.000Z",
"createdDate": "2024-02-21T04:55:57.280Z",
"originBoardId": 81,
"goal": ""
}
]
}
Here you can see that sprint id 434 "startDate": "2024-02-21T04:56:04.087Z" is before the "completeDate": "2024-02-21T04:56:49.251Z", of last closed sprint 424 but flow wise we are completing the sprint "id": 424 ("name": "DotNet Sprint 1") and staring sprint "id": 434("name": "DotNet Sprint 2") after that.
Please suggest.