@@ -14,7 +14,6 @@ function DistributedRuntimeClient(
14
14
rpc_timeout_in_seconds:: Integer = 120 ,
15
15
shutdown_timeout_in_minutes:: Integer = 5 ,
16
16
heartbeat_interval_in_seconds:: Integer = 10 ,
17
- max_missing_heartbeats:: Integer = 10 ,
18
17
use_compression:: Bool = true ,
19
18
)
20
19
GC. @preserve coordinator_bind_address begin
@@ -24,7 +23,6 @@ function DistributedRuntimeClient(
24
23
Int32 (rpc_timeout_in_seconds):: Int32 ,
25
24
Int32 (shutdown_timeout_in_minutes):: Int32 ,
26
25
Int32 (heartbeat_interval_in_seconds):: Int32 ,
27
- Cint (max_missing_heartbeats):: Cint ,
28
26
use_compression:: Bool ,
29
27
):: Ptr{Cvoid}
30
28
end
@@ -69,7 +67,6 @@ function DistributedRuntimeService(
69
67
coordinator_bind_address:: String ,
70
68
num_nodes:: Integer ;
71
69
heartbeat_interval_in_seconds:: Integer = 10 ,
72
- max_missing_heartbeats:: Integer = 10 ,
73
70
cluster_register_timeout_in_minutes:: Integer = 60 ,
74
71
shutdown_timeout_in_minutes:: Integer = 5 ,
75
72
)
@@ -78,7 +75,6 @@ function DistributedRuntimeService(
78
75
coordinator_bind_address:: Cstring ,
79
76
Cint (num_nodes):: Cint ,
80
77
Int32 (heartbeat_interval_in_seconds):: Int32 ,
81
- Cint (max_missing_heartbeats):: Cint ,
82
78
Int32 (cluster_register_timeout_in_minutes):: Int32 ,
83
79
Int32 (shutdown_timeout_in_minutes):: Int32 ,
84
80
):: Ptr{Cvoid}
@@ -135,7 +131,6 @@ function update!(
135
131
rpc_timeout_in_seconds:: Integer = 120 ,
136
132
shutdown_timeout_in_minutes:: Integer = 5 ,
137
133
heartbeat_interval_in_seconds:: Integer = 10 ,
138
- max_missing_heartbeats:: Integer = 10 ,
139
134
use_compression:: Bool = true ,
140
135
)
141
136
@assert 0 ≤ process_id < num_processes
@@ -166,7 +161,6 @@ function update!(
166
161
coordinator_bind_address,
167
162
num_processes;
168
163
heartbeat_interval_in_seconds,
169
- max_missing_heartbeats,
170
164
cluster_register_timeout_in_minutes,
171
165
shutdown_timeout_in_minutes,
172
166
)
@@ -189,7 +183,6 @@ function update!(
189
183
rpc_timeout_in_seconds,
190
184
shutdown_timeout_in_minutes,
191
185
heartbeat_interval_in_seconds,
192
- max_missing_heartbeats,
193
186
use_compression,
194
187
)
195
188
@debug " [PID $(process_id) ] Connecting to Reactant distributed service on \
0 commit comments