From bc6462ae867e27458efa1a69718590cc090b14e4 Mon Sep 17 00:00:00 2001 From: skafandri Date: Wed, 14 Jan 2026 19:17:03 +0700 Subject: [PATCH] [CPCLOUD-5943] Use API host for plugins state --- agent360/plugins/plugins-installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent360/plugins/plugins-installer.py b/agent360/plugins/plugins-installer.py index 61f1d01..f71ce2a 100644 --- a/agent360/plugins/plugins-installer.py +++ b/agent360/plugins/plugins-installer.py @@ -75,7 +75,7 @@ def _update_plugins_from_backend(self, proto='https'): return updated def _get_connection(self, proto='https'): - api_host = self.config.get('data', 'api_host') + api_host = self.config.get('data', 'hello_api_host') if (proto == 'https'): ctx = ssl.create_default_context(cafile=certifi.where()) if sys.version_info >= (3,):