0

I have deleted a change id and all its references from gerrit database. But the change is still visible in UI . Although clicking on the change give 500 internal server error. How can I fix it ? I want to remove the change permanently

devops
  • 1,121
  • 5
  • 20
  • 50

1 Answers1

2

You have to run a reindex of the changes index, either

  • offline (with Gerrit stopped):

    java -jar gerrit.war reindex --index changes
    
  • online (while Gerrit runs)

    ssh -p 29418 review.example.com gerrit index start changes
    

This will update the Lucene index from which the dashboards are generated.

StephenKing
  • 36,187
  • 11
  • 83
  • 112