reorder startup steps (#1642)

so the Ctr+C hook and the metrics server go before the potentially slow
`BeaconNode.init()`
This commit is contained in:
Ștefan Talpalaru 2020-09-14 08:24:31 +02:00 committed by Mamy Ratsimbazafy
parent 942743a356
commit aabb47e46c
1 changed files with 5 additions and 5 deletions

View File

@ -1145,8 +1145,6 @@ programMain:
config.createDumpDirs()
var node = waitFor BeaconNode.init(rng, config, stateSnapshotContents)
## Ctrl+C handling
proc controlCHandler() {.noconv.} =
when defined(windows):
@ -1156,9 +1154,6 @@ programMain:
status = BeaconNodeStatus.Stopping
setControlCHook(controlCHandler)
when hasPrompt:
initPrompt(node)
when useInsecureFeatures:
if config.metricsEnabled:
let metricsAddress = config.metricsAddress
@ -1166,6 +1161,11 @@ programMain:
address = metricsAddress, port = config.metricsPort
metrics.startHttpServer($metricsAddress, config.metricsPort)
var node = waitFor BeaconNode.init(rng, config, stateSnapshotContents)
when hasPrompt:
initPrompt(node)
if node.nickname != "":
dynamicLogScope(node = node.nickname): node.start()
else: