A user reported that one backport issue was not automatically resolved by the Skara bot. From the logs, Erik found that the bot didn't actually send the request to transition the bug to resolved and he noticed that around that time, the bot was renewing the access token for jbs.
When updating the state of an issue, the Skara bot first attempts to fetch the available transitions for that issue by calling this API:
https://bugs.openjdk.org/rest/api/2/issue/issue_id/transitions.
I called the API without authentication, I was expecting a 401 Unauthorized response. However, I received an empty response:
{"expand":"transitions","transitions":[]}.
Due to this empty response, the Skara bot did not attempt to transition the bug to any state.
We should do more verification when receiving an empty response
When updating the state of an issue, the Skara bot first attempts to fetch the available transitions for that issue by calling this API:
https://bugs.openjdk.org/rest/api/2/issue/issue_id/transitions.
I called the API without authentication, I was expecting a 401 Unauthorized response. However, I received an empty response:
{"expand":"transitions","transitions":[]}.
Due to this empty response, the Skara bot did not attempt to transition the bug to any state.
We should do more verification when receiving an empty response
- links to
-
Commit(master) openjdk/skara/7d8b2229
-
Review(master) openjdk/skara/1706