summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoranand76 <anand1976@users.noreply.github.com>2024-08-09 09:18:48 -0700
committeranand76 <anand1976@users.noreply.github.com>2024-08-09 09:18:48 -0700
commitdec94ecdbcb2dc688402eff2f136ab90dc31bac8 (patch)
treec799bd0b95ae07ab35652695c026c627355e18a5
parentc20eefc0a399bcde415640c8c17cb023a2ca9c6d (diff)
Update history
-rw-r--r--HISTORY.md4
-rw-r--r--unreleased_history/bug_fixes/prevent_duplicate_txn_name.md1
2 files changed, 4 insertions, 1 deletions
diff --git a/HISTORY.md b/HISTORY.md
index 0e6de9048..224969205 100644
--- a/HISTORY.md
+++ b/HISTORY.md
@@ -1,6 +1,10 @@
# Rocksdb Change Log
> NOTE: Entries for next release do not go here. Follow instructions in `unreleased_history/README.txt`
+## Unreleased
+### Bug Fixes
+* Fix a race condition in pessimistic transactions that could allow multiple transactions with the same name to be registered simultaneously, resulting in a crash or other unpredictable behavior.
+
## 9.5.1 (08/02/2024)
### Bug Fixes
* *Make DestroyDB supports slow deletion when it's configured in `SstFileManager`. The slow deletion is subject to the configured `rate_bytes_per_sec`, but not subject to the `max_trash_db_ratio`.
diff --git a/unreleased_history/bug_fixes/prevent_duplicate_txn_name.md b/unreleased_history/bug_fixes/prevent_duplicate_txn_name.md
deleted file mode 100644
index 152869d7d..000000000
--- a/unreleased_history/bug_fixes/prevent_duplicate_txn_name.md
+++ /dev/null
@@ -1 +0,0 @@
-Fix a race condition in pessimistic transactions that could allow multiple transactions with the same name to be registered simultaneously, resulting in a crash or other unpredictable behavior.