From 2be409da61348a9234eb079e4742ab4eb94a4da3 Mon Sep 17 00:00:00 2001 From: John Smith Date: Sun, 28 Aug 2022 14:46:14 -0400 Subject: [PATCH] change hostnames --- veilid-core/src/network_manager/tasks.rs | 2 +- veilid-flutter/example/lib/config.dart | 4 ++-- veilid-server/src/settings.rs | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/veilid-core/src/network_manager/tasks.rs b/veilid-core/src/network_manager/tasks.rs index 1a8ae96d..a8b550fc 100644 --- a/veilid-core/src/network_manager/tasks.rs +++ b/veilid-core/src/network_manager/tasks.rs @@ -55,7 +55,7 @@ impl NetworkManager { // txt_version,min_version,max_version,nodeid,hostname,dialinfoshort* // // Split bootstrap node record by commas. Example: - // 0,0,0,7lxDEabK_qgjbe38RtBa3IZLrud84P6NhGP-pRTZzdQ,bootstrap-dev-alpha.veilid.net,T5150,U5150,W5150/ws + // 0,0,0,7lxDEabK_qgjbe38RtBa3IZLrud84P6NhGP-pRTZzdQ,bootstrap-1.dev.veilid.net,T5150,U5150,W5150/ws let records: Vec = bsnirecord .trim() .split(',') diff --git a/veilid-flutter/example/lib/config.dart b/veilid-flutter/example/lib/config.dart index 6829ce11..e3bfcd60 100644 --- a/veilid-flutter/example/lib/config.dart +++ b/veilid-flutter/example/lib/config.dart @@ -49,8 +49,8 @@ Future getDefaultVeilidConfig() async { nodeId: "", nodeIdSecret: "", bootstrap: kIsWeb - ? ["ws://bootstrap-dev.veilid.net:5150/ws"] - : ["bootstrap-dev.veilid.net"], + ? ["ws://bootstrap.dev.veilid.net:5150/ws"] + : ["bootstrap.dev.veilid.net"], bootstrapNodes: [], routingTable: VeilidConfigRoutingTable( limitOverAttached: 64, diff --git a/veilid-server/src/settings.rs b/veilid-server/src/settings.rs index c9001fd1..d7e24c46 100644 --- a/veilid-server/src/settings.rs +++ b/veilid-server/src/settings.rs @@ -67,7 +67,7 @@ core: hole_punch_receipt_time_ms: 5000 node_id: '' node_id_secret: '' - bootstrap: ['bootstrap-dev.veilid.net'] + bootstrap: ['bootstrap.dev.veilid.net'] bootstrap_nodes: [] routing_table: limit_over_attached: 64 @@ -1472,7 +1472,7 @@ mod tests { // assert_eq!( s.core.network.bootstrap, - vec!["bootstrap-dev.veilid.net".to_owned()] + vec!["bootstrap.dev.veilid.net".to_owned()] ); assert_eq!(s.core.network.bootstrap_nodes, vec![]); //