aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2020-04-06 21:02:15 +0200
committerAlex Auvolat <alex@adnab.me>2020-04-06 21:02:15 +0200
commit3c36b449a3786bb62fa023bde37bac24635b5717 (patch)
tree5bf18f069a4b32d3e7d04d13475c4995474d4c9b /src/main.rs
parent1a5e6e39af19d572a9de7f54e66bef911bdbbf2f (diff)
downloadgarage-3c36b449a3786bb62fa023bde37bac24635b5717.tar.gz
garage-3c36b449a3786bb62fa023bde37bac24635b5717.zip
Some work
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 4448d535..0fcda4e0 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -103,7 +103,7 @@ async fn main() {
let api_server = api::run_api_server(sys.clone(), wait_from(rx2));
tokio::spawn(shutdown_signal(vec![tx1, tx2]));
- tokio::spawn(membership::bootstrap(sys));
+ tokio::spawn(sys.bootstrap());
let (e1, e2) = futures::join![rpc_server, api_server];