Fix incorrect return value for ApiSetupUtility::SetupMaster

refs #9471
This commit is contained in:
Gunnar Beutner 2015-10-25 19:57:57 +01:00
parent fd2cd7a3a5
commit b72ba2b63a
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ bool ApiSetupUtility::SetupMaster(const String& cn)
*/ */
if (FeatureUtility::CheckFeatureEnabled("api")) { if (FeatureUtility::CheckFeatureEnabled("api")) {
Log(LogInformation, "cli", "'api' feature already enabled, skipping feature enable and master certificate creation."); Log(LogInformation, "cli", "'api' feature already enabled, skipping feature enable and master certificate creation.");
return false; return true;
} }
if (!SetupMasterCertificates(cn)) if (!SetupMasterCertificates(cn))