mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-23 23:04:53 +00:00
Add duration histograms; minor fixes
This commit is contained in:
@@ -118,7 +118,8 @@ pub fn start_server<T: BeaconChainTypes>(
|
||||
inner_log,
|
||||
"HTTP server failed to start, Unable to bind"; "address" => format!("{:?}", e)
|
||||
)
|
||||
});
|
||||
})
|
||||
.unwrap_or_else(|_| ());
|
||||
|
||||
info!(
|
||||
log,
|
||||
@@ -127,7 +128,7 @@ pub fn start_server<T: BeaconChainTypes>(
|
||||
"port" => actual_listen_addr.port(),
|
||||
);
|
||||
|
||||
executor.runtime_handle().spawn(server_future);
|
||||
executor.spawn(server_future, "http_service");
|
||||
|
||||
Ok(actual_listen_addr)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user