Skip to content

Commit e871f96

Browse files
...
1 parent c78354f commit e871f96

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cluster.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
mutable struct ClusterInfo
44
cid::Integer
55
access_node_address::String
6-
nw::Union{Nothing,Integer}
6+
nw::Integer
77
access_node_args
88
compute_node_args
99
contexts::Vector{Union{Nothing,Vector{Integer}}}
1010
end
1111

1212
struct Cluster
1313
cid::Integer
14-
xid::Integer
14+
xid::Union{Nothing,Integer}
1515
Cluster(cid) = (@assert haskey(cluster_table[], cid); new(cid, nothing))
1616
function Cluster(cid, xid)
1717
@assert haskey(cluster_table[], cid)

0 commit comments

Comments
 (0)