Skip to content
Draft
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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ Changelog for NeoFS Node
- Optimized netmap caching in node (#3966)
- Store in metabase associated object ID in bytes instead of Base58 (#3971)
- Optimized local RANGE request execution (#3967)
- SN pushes URI-style endpoints to netmap instead of multiaddr (#3982)

### Removed
- `policer.max_workers` configuration (#3920)
Expand Down
2 changes: 1 addition & 1 deletion pkg/network/group.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ func WriteToNodeInfo(g AddressGroup, ni *netmap.NodeInfo) {

for addr := range slices.Values(g) {
ni.SetNetworkEndpoints()
addrs = append(addrs, addr.String())
addrs = append(addrs, addr.URIAddr())
}

ni.SetNetworkEndpoints(addrs...)
Expand Down
Loading