Access requests missing on the File Permission Page since upgrading from 6.0 to 6.2 #10714
Labels
FY25 Sprint 11
FY25 Sprint 11 (2024-11-20 - 2024-12-04)
Size: 3
A percentage of a sprint. 2.1 hours.
Type: Bug
a defect
We have received tickets from users that they can’t find the list of access requests anymore.
They know that their requests were there because they can find them in the notifications.
What steps does it take to reproduce the issue?
The database record looks like this:
The record will then look like this
The
request_state
isNULL
instead ofCREATED
, which results in not being shown in the list of requests.The flyway script (V6.0.0.1__9599-guestbook-at-request.sql) has added the ‘request_state’ column, but it then has no state (NULL).
The following SQL should fix this
However, when users have re-issued the requests because they were not handled, the above won't work:
To detect those cases use the following query:
And then as a solution remove that old requests using this query:
The text was updated successfully, but these errors were encountered: