Commit 78b073ab authored by Andrei Mihu's avatar Andrei Mihu
Browse files

Better handling of party membership when interacting with matchmaking.

parent 63ac64a5
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -13,6 +13,8 @@ The format is based on [keep a changelog](http://keepachangelog.com) and this pr
- Improved delivery of non-persistent SendAll notifications to large numbers of users.
- Truncate stats reported to devconsole status view to 2 decimal digits for improved readability.
- Memory usage and population time improvements in leaderboard rank cache.
- Better handling of internal transaction retries.
- Better handling of party membership when interacting with matchmaking.

### Fixed
- Correct cursor usage in group listings using only open/closed group state filter.
@@ -21,6 +23,8 @@ The format is based on [keep a changelog](http://keepachangelog.com) and this pr
- Remove incorrect category start and category end parameters from runtime leaderboard list functions.
- Graceful handling of idempotent tournament creation operations.
- Correct sorting of batched storage write and delete operations.
- Fix indexing of channel message list responses in Lua runtime.
- Better handling of parameters submitted from the devconsole UI.

## [3.16.0] - 2023-04-18
### Added
+2 −0
Original line number Diff line number Diff line
@@ -22,6 +22,8 @@ import (
	"go.uber.org/atomic"
)

var _ runtime.Presence = &MatchPresence{}

// Represents routing and identify information for a single match participant.
type MatchPresence struct {
	Node      string
+178 −175

File changed.

Preview size limit exceeded, changes collapsed.

+0 −1
Original line number Diff line number Diff line
@@ -56,7 +56,6 @@ func TestPartyMatchmakerAddAndRemove(t *testing.T) {
}

func createTestPartyHandler(t *testing.T, logger *zap.Logger) (*PartyHandler, func() error) {

	node := "node1"

	mm, cleanup, _ := createTestMatchmaker(t, logger, true, nil)
+169 −0

File added.

Preview size limit exceeded, changes collapsed.