Skip to content

Commit

Permalink
fix incorrect merge resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc Boudreau committed May 24, 2024
1 parent 792cfe7 commit d53f2a0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions vault/identity_store.go
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ func (i *IdentityStore) invalidateEntityBucket(ctx context.Context, key string)
for _, item := range bucket.Items {
bucketEntity, err := i.parseEntityFromBucketItem(ctx, item)
if err != nil {
i.logger.Error("failed to fetch entity during local alias invalidation", "entity_id", alias.CanonicalID, "error", err)
i.logger.Error("failed to parse entity from bucket entry item", "error", err)
return
}

Expand Down Expand Up @@ -1025,8 +1025,6 @@ func (i *IdentityStore) invalidateLocalAliasesBucket(ctx context.Context, key st
}
}
}
txn.Commit()
return
}

// Any local aliases still remaining in memDBLocalAliases do not exist in
Expand Down

0 comments on commit d53f2a0

Please sign in to comment.