From 1ea9ceff859fdaf6884b45b00b53c2b1fcb60c41 Mon Sep 17 00:00:00 2001 From: Shish Date: Sat, 3 Oct 2020 12:52:52 +0000 Subject: [PATCH] notify after config updates --- core/config.php | 1 + 1 file changed, 1 insertion(+) diff --git a/core/config.php b/core/config.php index a538da27..82af3520 100644 --- a/core/config.php +++ b/core/config.php @@ -334,5 +334,6 @@ class DatabaseConfig extends BaseConfig // rather than deleting and having some other request(s) do a thundering // herd of race-conditioned updates, just save the updated version once here $cache->set("config", $this->values); + $this->database->notify("config"); } }