setup: Only wait as long as necessary
This commit is contained in:
@ -151,13 +151,13 @@
|
||||
(setup! [_ test node]
|
||||
(c/exec "rm" "-rf" "/etc/sable" "/tmp/sable_upload" "/usr/local/etc/sable")
|
||||
(c/exec "mkdir" "/tmp/sable_upload" "/etc/sable")
|
||||
(info node "configuring Sable")
|
||||
(info "configuring Sable")
|
||||
(let [remote_tmp_path (c/upload "resources/config"
|
||||
"/tmp/sable_upload")]
|
||||
(c/su
|
||||
(c/exec* "mv" (str remote_tmp_path "/*") "/usr/local/etc/sable/")))
|
||||
(c/su (configure_node nodes node))
|
||||
(info node "installing Sable from" sable_bin_path)
|
||||
(info "installing Sable from" sable_bin_path)
|
||||
(let [remote_tmp_path (c/upload (map (fn [file] (str sable_bin_path file))
|
||||
sable_binaries)
|
||||
"/tmp/sable_upload")]
|
||||
@ -176,7 +176,11 @@
|
||||
(if (= (.indexOf nodes node) 0)
|
||||
["--bootstrap-network" "/etc/sable/network_config.json"]
|
||||
[])))
|
||||
(Thread/sleep 10000))
|
||||
(info "awaiting port 6667")
|
||||
; Non-bootstrap servers won't listen for clients (port 6667) until they successfully
|
||||
; started gossiping with a bootstrapped server. This may take a while.
|
||||
(cu/await-tcp-port 6667 {:timeout 60000})
|
||||
(info "ready"))
|
||||
|
||||
(teardown! [_ test node]
|
||||
(info node "tearing down Sable")
|
||||
|
Reference in New Issue
Block a user