Skip to content

Commit

Permalink
Fix client disposal
Browse files Browse the repository at this point in the history
  • Loading branch information
JPWatson committed May 15, 2018
1 parent b448136 commit f8b3a09
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Adaptive.Aeron/Aeron.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

using System;
using System.IO;
using System.Text;
using System.Threading;
using Adaptive.Aeron.Exceptions;
using Adaptive.Aeron.LogBuffer;
Expand Down Expand Up @@ -82,7 +81,7 @@ public sealed class Aeron : IDisposable
*/
public static readonly long KeepaliveIntervalNs = NanoUtil.FromMilliseconds(500);

private static readonly AtomicBoolean _isClosed = new AtomicBoolean(false);
private readonly AtomicBoolean _isClosed = new AtomicBoolean(false);
private readonly long _clientId;
private readonly ClientConductor _conductor;
private readonly IRingBuffer _commandBuffer;
Expand Down

0 comments on commit f8b3a09

Please sign in to comment.