Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Consul.Test/HealthTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ public async Task Health_Checks()
var checks = await _client.Health.Checks(svcID);
Assert.NotEqual((ulong)0, checks.LastIndex);
Assert.NotEmpty(checks.Response);
Assert.Equal(checks.Response[0].ServiceTags, registration.Tags);
}
finally
{
Expand Down
1 change: 1 addition & 0 deletions Consul/Health.cs
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ public class HealthCheck
public string Output { get; set; }
public string ServiceID { get; set; }
public string ServiceName { get; set; }
public string[] ServiceTags { get; set; }
public string Type { get; set; }
}

Expand Down