Skip to content

Commit

Permalink
Merge 6d66951 into 8f07500
Browse files Browse the repository at this point in the history
  • Loading branch information
helto4real committed Aug 14, 2020
2 parents 8f07500 + 6d66951 commit f7392d1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Daemon/NetDaemon.Daemon/Daemon/NetDaemonHost.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ public class NetDaemonHost : INetDaemonHost, IAsyncDisposable
new ConcurrentDictionary<string, HassEntity>();

internal readonly Channel<(string, string, dynamic?)> _serviceCallMessageChannel =
Channel.CreateBounded<(string, string, dynamic?)>(20);
Channel.CreateBounded<(string, string, dynamic?)>(200);

internal readonly Channel<(string, dynamic, dynamic?)> _setStateMessageChannel =
Channel.CreateBounded<(string, dynamic, dynamic?)>(20);
Channel.CreateBounded<(string, dynamic, dynamic?)>(200);

internal readonly Channel<(string, string)> _ttsMessageChannel =
Channel.CreateBounded<(string, string)>(20);
Channel.CreateBounded<(string, string)>(200);

// Used for testing
internal int InternalDelayTimeForTts = 2500;
Expand Down

0 comments on commit f7392d1

Please sign in to comment.