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
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "DistributedNext"
uuid = "fab6aee4-877b-4bac-a744-3eca44acbb6f"
version = "1.0.0"
version = "1.1.0"

[deps]
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Expand Down
5 changes: 4 additions & 1 deletion docs/src/_changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ CurrentModule = DistributedNext
This documents notable changes in DistributedNext.jl. The format is based on
[Keep a Changelog](https://keepachangelog.com).

## Unreleased
## [v1.1.0] - 2025-08-02

### Fixed
- Fixed a cause of potential hangs when exiting the process ([#16]).
Expand All @@ -19,6 +19,9 @@ This documents notable changes in DistributedNext.jl. The format is based on
port is specified. Previously this would cause errors when the workers all
tried to bind to the same port, now all additional workers will treat the bind
port as a port hint ([#19]).
- Fixed a bug in the network interface selection code that would cause it to
error when only a subset of interfaces reported the negotiation speed
([#29]).

### Added
- A watcher mechanism has been added to detect when both the Distributed stdlib
Expand Down
4 changes: 2 additions & 2 deletions src/cluster.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1374,8 +1374,8 @@ function init_bind_addr()
# If none of them report speed just pick the first one
bind_addr = string(interfaces[1].ip)
else
idx = findmax(x -> x.speed, interfaces)[2]
bind_addr = string(interfaces[idx].ip)
idx = findmax(x -> x.speed, interfaces_with_speed)[2]
bind_addr = string(interfaces_with_speed[idx].ip)
end
end
end
Expand Down
Loading