From a8800e1504569512f9badf7fbba46dc9243ccc24 Mon Sep 17 00:00:00 2001 From: Brian Kassouf Date: Thu, 23 Apr 2020 15:20:46 -0700 Subject: [PATCH] Update vault/identity_store_entities.go Co-Authored-By: Calvin Leung Huang --- vault/identity_store_entities.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vault/identity_store_entities.go b/vault/identity_store_entities.go index b4045ccc6fa0c..4f23896158b92 100644 --- a/vault/identity_store_entities.go +++ b/vault/identity_store_entities.go @@ -516,7 +516,9 @@ func (i *IdentityStore) handleEntityBatchDelete() framework.OperationFunc { i.lock.Lock() defer i.lock.Unlock() - // Create a MemDB transaction to delete entities + // Create a MemDB transaction to delete entities from the inmem database + // without altering storage. Batch deletion on storage bucket items is + // performed directly through entityPacker. txn := i.db.Txn(true) defer txn.Abort()