Skip to content

Commit

Permalink
Revert "fix orphan check for deleted branch (go-gitea#27310) (go-gite…
Browse files Browse the repository at this point in the history
…a#27320)"

This reverts commit 2138661.
  • Loading branch information
lunny committed Oct 24, 2023
1 parent 71803d3 commit ee96c73
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/doctor/dbconsistency.go
Expand Up @@ -168,9 +168,9 @@ func checkDBConsistency(ctx context.Context, logger log.Logger, autofix bool) er
// find protected branches without existing repository
genericOrphanCheck("Protected Branches without existing repository",
"protected_branch", "repository", "protected_branch.repo_id=repository.id"),
// find branches without existing repository
genericOrphanCheck("Branches without existing repository",
"branch", "repository", "branch.repo_id=repository.id"),
// find deleted branches without existing repository
genericOrphanCheck("Deleted Branches without existing repository",
"deleted_branch", "repository", "deleted_branch.repo_id=repository.id"),
// find LFS locks without existing repository
genericOrphanCheck("LFS locks without existing repository",
"lfs_lock", "repository", "lfs_lock.repo_id=repository.id"),
Expand Down

0 comments on commit ee96c73

Please sign in to comment.