Skip to content

Commit

Permalink
Merge pull request #3 from swisschain/dev-LM-1129-logs
Browse files Browse the repository at this point in the history
LM-1129: changes ClientIdsToLog type
  • Loading branch information
samodovdi authored Jun 24, 2021
2 parents fe38ed7 + a2c3004 commit 2520320
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Lykke.Service.Assets.Services/AssetConditionService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class AssetConditionService : IAssetConditionService, IStartable
private readonly ICachedAssetConditionsService _cachedAssetConditionsService;
private readonly IMyNoSqlWriterWrapper<AssetConditionNoSql> _myNoSqlWriter;
private readonly int _maxClientsInNoSqlCache;
private readonly ISet<string> _clientIdsToLog;
private readonly List<string> _clientIdsToLog;
private readonly ILog _log;

public AssetConditionService(
Expand All @@ -36,7 +36,7 @@ public AssetConditionService(
ICachedAssetConditionsService cachedAssetConditionsService,
IMyNoSqlWriterWrapper<AssetConditionNoSql> myNoSqlWriter,
int maxClientsInNoSqlCache,
ISet<string> clientIdsToLog,
List<string> clientIdsToLog,
ILogFactory logFactory)
{
_assetConditionLayerRepository = assetConditionLayerRepository;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public void TestInitialized()
cachedAssetConditionsService,
_myNoSqlWriterMock.Object,
10,
new HashSet<string>(),
new List<string>(),
EmptyLogFactory.Instance
);

Expand Down

0 comments on commit 2520320

Please sign in to comment.