Skip to content

Commit a7dabfc

Browse files
authored
Merge pull request #23 from JuliaParallel/remotecall-eval
Export `remotecall_eval`
2 parents 97b7f4a + 6ac243d commit a7dabfc

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

docs/src/_changelog.md

+3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ This documents notable changes in DistributedNext.jl. The format is based on
2323
- [`other_workers()`](@ref) and [`other_procs()`](@ref) were implemented and
2424
exported ([#18]).
2525

26+
### Changed
27+
- [`remotecall_eval`](@ref) is now exported ([#23]).
28+
2629
## [v1.0.0] - 2024-12-02
2730

2831
### Fixed

docs/src/index.md

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ DistributedNext.fetch(::RemoteChannel)
2323
DistributedNext.remotecall(::Any, ::Integer, ::Any...)
2424
DistributedNext.remotecall_wait(::Any, ::Integer, ::Any...)
2525
DistributedNext.remotecall_fetch(::Any, ::Integer, ::Any...)
26+
DistributedNext.remotecall_eval
2627
DistributedNext.remote_do(::Any, ::Integer, ::Any...)
2728
DistributedNext.put!(::RemoteChannel, ::Any...)
2829
DistributedNext.put!(::DistributedNext.Future, ::Any)

src/DistributedNext.jl

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ export
5151
other_procs,
5252
remote,
5353
remotecall,
54+
remotecall_eval,
5455
remotecall_fetch,
5556
remotecall_wait,
5657
remote_do,

test/sshmanager.jl

+11-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Test
22
using DistributedNext
3-
import Sockets: getipaddr
3+
import Sockets: getipaddr, listenany
44

55
import LibSSH as ssh
66
import LibSSH.Demo: DemoServer
@@ -26,8 +26,11 @@ function test_n_remove_pids(new_pids)
2626
end
2727

2828
@testset "SSHManager" begin
29-
DemoServer(2222; auth_methods=[ssh.AuthMethod_None], allow_auth_none=true, verbose=false, timeout=3600) do
30-
sshflags = `-o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o LogLevel=ERROR -p 2222 `
29+
ssh_port, server = listenany(2222)
30+
close(server)
31+
32+
DemoServer(Int(ssh_port); auth_methods=[ssh.AuthMethod_None], allow_auth_none=true, verbose=false, timeout=3600) do
33+
sshflags = `-o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o LogLevel=ERROR -p $(ssh_port)`
3134
#Issue #9951
3235
hosts=[]
3336
localhost_aliases = ["localhost", string(getipaddr()), "127.0.0.1"]
@@ -66,7 +69,7 @@ end
6669
print("\nssh addprocs with tunnel (SSH multiplexing)\n")
6770
new_pids = addprocs_with_testenv([("localhost", num_workers)]; tunnel=true, multiplex=true, sshflags=sshflags)
6871
@test length(new_pids) == num_workers
69-
controlpath = joinpath(ssh_dir, "julia-$(ENV["USER"])@localhost:2222")
72+
controlpath = joinpath(ssh_dir, "julia-$(ENV["USER"])@localhost:$(ssh_port)")
7073
@test issocket(controlpath)
7174
test_n_remove_pids(new_pids)
7275
@test :ok == timedwait(()->!issocket(controlpath), 10.0; pollint=0.5)
@@ -82,9 +85,11 @@ end
8285
h1 = "localhost"
8386
user = ENV["USER"]
8487
h2 = "$user@$h1"
85-
h3 = "$h2:2222"
88+
h3 = "$h2:$(ssh_port)"
8689
h4 = "$h3 $(string(getipaddr()))"
87-
h5 = "$h4:9300"
90+
(bind_port, server) = listenany(9300)
91+
close(server)
92+
h5 = "$h4:$(bind_port)"
8893

8994
new_pids = addprocs_with_testenv([h1, h2, h3, h4, h5]; sshflags=sshflags)
9095
@test length(new_pids) == 5

0 commit comments

Comments
 (0)