Auto-remediation tasks deprecated in Platform 6.5

Deprecation notice

The updateNodeConfig and convertChangesToConfig tasks are deprecated as of Platform 6.5 and will be removed in Platform 7. Beginning in Platform 6.5, Configuration Manager’s auto-remediation tasks will be disabled by default.

What should I do?

Contact your Customer Success Manager for assistance removing the updateNodeConfig and convertChangesToConfig tasks from your workflows.

If you need to re-enable auto-remediation tasks while you complete your migration, you can use the configuration_manager/app-settings endpoint to manage the feature flag.

Check the current setting

Send a GET request to configuration_manager/app-settings to retrieve the current value of autoRemediationEnabled.

Enable auto-remediation tasks

Send a PUT request to configuration_manager/app-settings with the following request body:

1{
2 "settings": {
3 "autoRemediationEnabled": true
4 }
5}

Disable auto-remediation tasks

Send a PUT request to configuration_manager/app-settings with the following request body:

1{
2 "settings": {
3 "autoRemediationEnabled": false
4 }
5}