Jonathan Hurley created AMBARI-13524:
----------------------------------------
Summary: Change a Request In Progress To Skip Errors Automatically
Key: AMBARI-13524
URL: https://issues.apache.org/jira/browse/AMBARI-13524
Project: Ambari
Issue Type: Bug
Components: ambari-server
Affects Versions: 2.1.3
Reporter: Jonathan Hurley
Assignee: Jonathan Hurley
Priority: Critical
Fix For: 2.1.3
Although the upgrade endpoint can be used to marked failures as being
automatically skipped:
{code:title=POST api/v1/clusters/c1/upgrades}
{
"Upgrade": {
"repository_version": "2.3.0.0-2545",
"skip_failures": true
}
}
{code}
This currently does not work on upgrades already in progress. The API should
allow an upgrade in progress to have its stages altered so that they will
automatically skip failures. This would be a PUT command:
{code:title=PUT api/v1/clusters/c1/upgrades/1}
{
"Upgrade": {
"skip_failures": true
}
}
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)