We have LDAP configured for authentication in our Gerrit 3.10.9
We got a list of users from gerrit via REST and checked if they are active in LDAP. If the user is not active in LDAP, we disabled the user id with below command.
ssh -p 29418
gerrit.mycomp.com gerrit set-account --inactive <userid>
Now, when I do a search for a file modifier in UI, it is not listing the files modified by the inactive user.
We are able to list the changes owned by the inactive user with owner: modifier in UI.
Is it an expected behaviour? or should we make any changes to config for search to return the file modification by an inactive user?