mirror of
https://github.com/bitwarden/server
synced 2025-12-29 06:33:43 +00:00
make event message processing idempotent
This commit is contained in:
@@ -109,7 +109,7 @@ namespace Bit.Core.Repositories.TableStorage
|
||||
|
||||
public async Task CreateEntityAsync(ITableEntity entity)
|
||||
{
|
||||
await _table.ExecuteAsync(TableOperation.Insert(entity));
|
||||
await _table.ExecuteAsync(TableOperation.InsertOrReplace(entity));
|
||||
}
|
||||
|
||||
public async Task<PagedResult<IEvent>> GetManyAsync(string partitionKey, string rowKey,
|
||||
|
||||
Reference in New Issue
Block a user