From 26d7cd3d486720bc374e596d827a0d87d6a9ac7b Mon Sep 17 00:00:00 2001 From: Oliver Date: Fri, 13 Sep 2024 08:57:40 +1000 Subject: [PATCH] Prevent creation of setting when calculating plugin hash (#8118) --- src/backend/InvenTree/plugin/registry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/InvenTree/plugin/registry.py b/src/backend/InvenTree/plugin/registry.py index 4b49eb5433..7663fecb2a 100644 --- a/src/backend/InvenTree/plugin/registry.py +++ b/src/backend/InvenTree/plugin/registry.py @@ -768,7 +768,7 @@ class PluginsRegistry: for k in self.plugin_settings_keys(): try: - val = get_global_setting(k) + val = get_global_setting(k, create=False) msg = f'{k}-{val}' data.update(msg.encode())