Bug Fix - Typo for Redeploy Server Action

The following error [0] was encountered while executing
the 'redeploy_server' action using Shipyard CLI.

This P.S. is meant to correct the problem

[0] Error in Airflow

[2018-01-22 03:46:46,818] {rest_api_plugin.py:481} INFO - DAG_ID 'redeploy_sever' was not found in the DagBag list
[2018-01-22 03:46:46,819] {rest_api_plugin.py:385} WARNING - Returning a 400 Response Code with response 'The DAG ID 'redeploy_sever' does not exist'

Change-Id: If1d9c8c04fef539ab99e8cf76286fd4eaed9e48e
This commit is contained in:
Anthony Lin 2018-01-22 04:46:21 +00:00
parent 313c44d054
commit ac637d6614
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ SUPPORTED_ACTION_MAPPINGS = {
'validator': None
},
'redeploy_server': {
'dag': 'redeploy_sever',
'dag': 'redeploy_server',
# TODO (Bryan Strassner) This should have a validator method
# Needs to be revisited when defined
'validator': None