Skip to content
This repository has been archived by the owner on Apr 27, 2019. It is now read-only.

Commit

Permalink
Cut 0.6.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
highlyunavailable committed May 17, 2016
1 parent cc8c37b commit 1c4740f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@
* `ConsulClient` is now `IDisposable` and should have `Dispose()` called to
clean it up. It is still supposed to be used in a long-lived fashion, though.

## 2016-05-16
* Fixed configuration reuse between multiple clients so multiple
`ConsulClient`s that exist one after the other that both reference the same
configuration do not spuriously dispose of part of the
`ConsulClientConfiguration`.

## 2016-04-29
* The `Newtonsoft.Json` DLL is now ILMerged into the `Consul` DLL, so
there should be no more issues with mismatched JSON.NET versions in
Expand Down
1 change: 0 additions & 1 deletion Consul.Test/ClientTest.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
using System.Diagnostics;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
Expand Down
2 changes: 1 addition & 1 deletion Consul.Test/SessionTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public async Task Session_Create_RenewPeriodic_TTLExpire()
{
var renewTask = client.Session.RenewPeriodic(TimeSpan.FromSeconds(1), id, WriteOptions.Default, ct);
Assert.True((await client.Session.Destroy(id)).Response);
renewTask.Wait(1000);
renewTask.Wait(10000);
}
catch (AggregateException ae)
{
Expand Down
1 change: 0 additions & 1 deletion Consul/Client.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Net;
using System.Net.Http;
Expand Down

0 comments on commit 1c4740f

Please sign in to comment.