@@ -46,12 +46,12 @@ Some fields are used by both `LocalManager`s and `SSHManager`s:
46
46
mutable struct WorkerConfig
47
47
# Common fields relevant to all cluster managers
48
48
io:: Union{IO, Nothing}
49
- host:: Union{AbstractString , Nothing}
49
+ host:: Union{String , Nothing}
50
50
port:: Union{Int, Nothing}
51
51
52
52
# Used when launching additional workers at a host
53
53
count:: Union{Int, Symbol, Nothing}
54
- exename:: Union{AbstractString , Cmd, Nothing}
54
+ exename:: Union{String , Cmd, Nothing}
55
55
exeflags:: Union{Cmd, Nothing}
56
56
57
57
# External cluster managers can use this to store information at a per-worker level
@@ -61,8 +61,8 @@ mutable struct WorkerConfig
61
61
# SSHManager / SSH tunnel connections to workers
62
62
tunnel:: Union{Bool, Nothing}
63
63
multiplex:: Union{Bool, Nothing}
64
- forward:: Union{AbstractString , Nothing}
65
- bind_addr:: Union{AbstractString , Nothing}
64
+ forward:: Union{String , Nothing}
65
+ bind_addr:: Union{String , Nothing}
66
66
sshflags:: Union{Cmd, Nothing}
67
67
max_parallel:: Union{Int, Nothing}
68
68
200
200
201
201
mutable struct LocalProcess
202
202
id:: Int
203
- bind_addr:: AbstractString
203
+ bind_addr:: String
204
204
bind_port:: UInt16
205
- cookie:: AbstractString
205
+ cookie:: String
206
206
LocalProcess () = new (1 )
207
207
end
208
208
0 commit comments