From e3a142ea2809946885b7a985d18695733be1010f Mon Sep 17 00:00:00 2001 From: "Ruben S. Montero" Date: Fri, 7 Mar 2014 13:12:23 +0100 Subject: [PATCH] Bug: MASTER_ONED can be empty for federation master --- src/nebula/Nebula.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nebula/Nebula.cc b/src/nebula/Nebula.cc index ae7095fcb3..e2cd887bb7 100644 --- a/src/nebula/Nebula.cc +++ b/src/nebula/Nebula.cc @@ -207,7 +207,7 @@ void Nebula::start(bool bootstrap_only) master_oned = vatt->vector_value("MASTER_ONED"); - if (master_oned.empty()) + if (master_oned.empty() && !federation_master) { throw runtime_error( "FEDERATION MASTER_ONED endpoint is missing.");