fix race on index data structure caused by locking wrong object (#219)

This commit is contained in:
Sebastian Burckhardt 2023-01-24 13:29:57 -08:00 коммит произвёл GitHub
Родитель a6034f6ced
Коммит c5aefce2ef
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -85,7 +85,7 @@ namespace DurableTask.Netherite
if (this.InstanceIds != null) if (this.InstanceIds != null)
{ {
lock (this) lock (this.InstanceIds)
{ {
if (!evt.DeleteInstance) if (!evt.DeleteInstance)
{ {
@ -105,7 +105,7 @@ namespace DurableTask.Netherite
if (this.InstanceIds != null) if (this.InstanceIds != null)
{ {
lock (this) lock (this.InstanceIds)
{ {
foreach (var key in evt.Purged) foreach (var key in evt.Purged)
{ {