From 40eaf6be242d7ed260ec4ddc69aee4aaa6398355 Mon Sep 17 00:00:00 2001 From: Philip O'Toole Date: Mon, 23 Aug 2021 09:55:13 -0400 Subject: [PATCH] Typo and CHANGELOG --- CHANGELOG.md | 1 + cluster/service_test.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a28ab656..80ad419d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ Systems running earlier 6.x software can be upgraded to this release without doi - [PR #863](https://github.com/rqlite/rqlite/pull/863): Add gauge-like metric for Snapshot timings. - [PR #854](https://github.com/rqlite/rqlite/pull/864): Use a connection pool for internode communications. - [PR #867](https://github.com/rqlite/rqlite/pull/867): Add cluster status to Status output. +- [PR #869](https://github.com/rqlite/rqlite/pull/869): Cluster client uses resolved address, and improved status output. ## 6.2.0 (August 18th 2021) ### New features diff --git a/cluster/service_test.go b/cluster/service_test.go index de42e87a..5757790b 100644 --- a/cluster/service_test.go +++ b/cluster/service_test.go @@ -131,7 +131,7 @@ func Test_NewServiceSetGetNodeAPIAddrLocal(t *testing.T) { t.Fatalf("failed to confirm request served locally") } - // Ensure it still works when hostname passed it. + // Ensure it still works when hostname passed in. _, port, err := net.SplitHostPort(s.Addr()) if err != nil { t.Fatalf("failed to split host and port: %s", err)