You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Maybe there is a conflict during the delete operation, so we should retry after a refresh
205
+
log.Warn("Deletion of entries of repo %v within index %v was erroneus. Trying to refresh index before trying again", repoID, b.inner.VersionedIndexName(), err)
206
+
iferr:=b.refreshIndex(ctx); err!=nil {
207
+
returnerr
208
+
}
209
+
iferr:=b.doDelete(ctx, repoID); err!=nil {
210
+
log.Error("Could not delete entries of repo %v within index %v", repoID, b.inner.VersionedIndexName())
0 commit comments