Skip to content

Commit

Permalink
Merge pull request #14719 from phonedph1/newserver
Browse files Browse the repository at this point in the history
dnsdist: start the backend if rest of config is processed
  • Loading branch information
rgacogne authored Sep 27, 2024
2 parents 51c26d1 + 466ff9b commit 0171423
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pdns/dnsdistdist/dnsdist-lua.cc
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ static void setupLuaConfig(LuaContext& luaCtx, bool client, bool configCheck)
}

if (ret->connected) {
if (!dnsdist::configuration::isImmutableConfigurationDone()) {
if (dnsdist::configuration::isImmutableConfigurationDone()) {
ret->start();
}
}
Expand Down

0 comments on commit 0171423

Please sign in to comment.