mirror of
https://github.com/bitwarden/server.git
synced 2025-07-07 10:55:43 -05: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