Skip to content

Commit

Permalink
Fix issues with merging
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanbulfinMS committed Mar 1, 2022
1 parent e861cb4 commit 97fe5c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions iothub/device/src/Transport/Amqp/AmqpConnectionHolder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
using Microsoft.Azure.Devices.Client.Exceptions;
using Microsoft.Azure.Devices.Client.Extensions;
using Microsoft.Azure.Devices.Client.Transport.AmqpIot;
using System.Collections.Generic;
using System.Linq;
using Microsoft.Azure.Devices.Shared;

namespace Microsoft.Azure.Devices.Client.Transport.Amqp
{
Expand Down
2 changes: 1 addition & 1 deletion iothub/device/src/Transport/Amqp/AmqpTransportHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ internal class AmqpTransportHandler : TransportHandler
protected AmqpUnit _amqpUnit;
private readonly Action<TwinCollection> _onDesiredStatePatchListener;
private readonly object _lock = new object();
private readonly ConcurrentDictionary<string, TaskCompletionSource<Twin>> _twinResponseCompletions = new ConcurrentDictionary<string, TaskCompletionSource<Twin>>();
private readonly ConcurrentDictionary<string, TaskCompletionSource<AmqpMessage>> _twinResponseCompletions = new ConcurrentDictionary<string, TaskCompletionSource<AmqpMessage>>();
private bool _closed;

static AmqpTransportHandler()
Expand Down

0 comments on commit 97fe5c2

Please sign in to comment.