add BB stack limits patch

This commit is contained in:
Martin Michelsen
2024-08-10 00:29:24 -07:00
parent d676e9bb38
commit f0366a3550
6 changed files with 128 additions and 5 deletions
+8
View File
@@ -1170,6 +1170,14 @@ void ServerState::load_config_early() {
} catch (const out_of_range&) {
}
this->bb_required_patches.clear();
try {
for (const auto& it : this->config_json->get_list("BBRequiredPatches")) {
this->bb_required_patches.emplace_back(it->as_string());
}
} catch (const out_of_range&) {
}
this->update_dependent_server_configs();
}