From 9e50bc0488e411f9ae7603cdc5e130004561fe3c Mon Sep 17 00:00:00 2001 From: Alan Orwick Date: Tue, 5 Sep 2023 16:13:42 -0500 Subject: [PATCH] add no discover in Makefile --- Makefile | 3 +++ network.env.dist | 1 + 2 files changed, 4 insertions(+) diff --git a/Makefile b/Makefile index d05198d1f1..5e3aca41db 100644 --- a/Makefile +++ b/Makefile @@ -72,6 +72,9 @@ endif ifeq ($(RUN_BLAKE3),true) BASE_CMD += --consensus.engine "blake3" endif +ifeq ($(NO_DISCOVER),true) + BASE_CMD += --nodiscover +endif # Build suburl strings for slice specific subclient groups # WARNING: Only connect to dom/sub clients over a trusted network. diff --git a/network.env.dist b/network.env.dist index 52ca0b0d7b..7c54cc1393 100644 --- a/network.env.dist +++ b/network.env.dist @@ -115,6 +115,7 @@ VERBOSITY=4 # Syncmode variable SYNCMODE=full +NO_DISCOVERY=false # Stats information QUAI_STATS=false