crew_test("workers signal themselves to exit when connection breaks", {
x <- crew_controller_local(workers = 1L)
x$start()
x$push(nanonext::until(nanonext::cv(), 600 * 1e3))
Sys.sleep(2)
x$scale()
Sys.sleep(2)
dispatcher <- x$client$dispatcher
crew_terminate_process(ps::ps_pid(dispatcher))
crew_retry(
~!ps::ps_is_running(dispatcher),
seconds_interval = 0.5,
seconds_timeout = 60
)
Sys.sleep(5)
worker <- x$launcher$instances$handle[[1L]]
on.exit(worker$signal(signal = crew_terminate_signal()))
expect_false(worker$is_alive())
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.