1
0
Fork 0

CHANGELOG

master
Philip O'Toole 10 months ago
parent 4a7814a4a3
commit 07cb0fb22a

@ -49,6 +49,7 @@ When officially released 8.0 will support (mostly) seamless upgrades from the 7.
- [PR #1420](https://github.com/rqlite/rqlite/pull/1420), [PR #1431](https://github.com/rqlite/rqlite/pull/1431): Nodes join a cluster using the Raft address, not the HTTP API.
- [PR #1426](https://github.com/rqlite/rqlite/pull/1426): 'go mod' updates, including moving to Raft 1.6.
- [PR #1430](https://github.com/rqlite/rqlite/pull/1430): Check that any supplied Join addresses are not HTTP servers.
- [PR #1437](https://github.com/rqlite/rqlite/pull/1437): Actually timeout if needed during `nodes/` access. Fixes [issue #1435](https://github.com/rqlite/rqlite/issues/1435). Thanks @dwco-z
## 7.21.4 (July 8th 2023)
### Implementation changes and bug fixes

@ -44,7 +44,6 @@ func (n *Node) Test(ga GetAddresser, leaderAddr string, timeout time.Duration) {
timer := time.NewTimer(timeout)
defer timer.Stop()
done := make(chan struct{})
go func() {
defer close(done)
apiAddr, err := ga.GetNodeAPIAddr(n.Addr, timeout)

Loading…
Cancel
Save