Skip to content

Commit

Permalink
Merge pull request #3 from LykkeCity/Ignore_TotalBalance_Users
Browse files Browse the repository at this point in the history
TotalBalance client id ignored
  • Loading branch information
PaterSantyago committed Oct 11, 2018
2 parents d23be8b + cbf791c commit ab9ea26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Lykke.Tools.AssetMigrator/Implementations/Migrator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ private async Task<BalanceEntity[]> GetBalancesAsync()
continuationToken
);

balances.AddRange(balancesBatch);
balances.AddRange(balancesBatch.Where(x => x.ClientId != "TotalBalance"));

_log.Info($"Got {balances.Count} balances to migrate");

Expand Down

0 comments on commit ab9ea26

Please sign in to comment.