From c52354051e723cffda413e11909c9f7dbbad4f7d Mon Sep 17 00:00:00 2001 From: Nageswara Nandigam Date: Wed, 7 Feb 2024 15:30:30 -0800 Subject: [PATCH] disable RSM updates --- azurelinuxagent/common/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azurelinuxagent/common/conf.py b/azurelinuxagent/common/conf.py index a94220ecf..666228531 100644 --- a/azurelinuxagent/common/conf.py +++ b/azurelinuxagent/common/conf.py @@ -670,7 +670,7 @@ def get_enable_ga_versioning(conf=__conf__): If True, the agent looks for rsm updates(checking requested version in GS) otherwise it will fall back to self-update and finds the highest version from PIR. NOTE: This option is experimental and may be removed in later versions of the Agent. """ - return conf.get_switch("Debug.EnableGAVersioning", True) + return conf.get_switch("Debug.EnableGAVersioning", False) def get_firewall_rules_log_period(conf=__conf__):