Skip to content

Commit

Permalink
Remove setting IsManualSync to false because it's already done in the…
Browse files Browse the repository at this point in the history
… mapping when saving (#199)
  • Loading branch information
tybaker authored Sep 11, 2024
1 parent 5480c69 commit 7ae5566
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/AplosConnector.Common/Storage/Pex2AplosMappingStorage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@ public async Task DeleteAsync(int pexBusinessAcctId, CancellationToken cancellat

public async Task UpdateAsync(Pex2AplosMappingModel model, CancellationToken cancellationToken)
{
model.IsManualSync = false; // always reset to false when saving

var entity = _storageMappingService.Map(model);
entity.PartitionKey = PARTITION_KEY;
entity.RowKey = model.PEXBusinessAcctId.ToString();
Expand Down

0 comments on commit 7ae5566

Please sign in to comment.