> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.itential.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.itential.com/_mcp/server.

# Auto-remediation tasks deprecated in Platform 6.5

> Notice that the updateNodeConfig and convertChangesToConfig tasks that supported the auto-remediation feature in Configuration Manager will be deprecated in Platform 6.5 and removed in Platform 7.

## 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:

```json
{
  "settings": {
    "autoRemediationEnabled": true
  }
}
```

**Disable auto-remediation tasks**

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

```json
{
  "settings": {
    "autoRemediationEnabled": false
  }
}
```