Fixes typo error in Rally - orchestrator/api.py

This submission is to fix the typo error
in "rally/orchestrator/api.py" file.
The typo "finised" is being changed to
"finished".

Change-Id: I53798fdf0f08694b6bb463a11fa9c88baaeb94d7
This commit is contained in:
Sunil Mamillapalli 2014-06-13 16:14:47 +05:30
parent 73f740405e
commit f8290e3aff

View File

@ -47,7 +47,7 @@ def destroy_deploy(deploy_uuid):
# TODO(akscram): We have to be sure that there are no running
# tasks for this deployment.
# TODO(akscram): Check that the deployment have got a status that
# is equal to "*->finised" or "deploy->inconsistent".
# is equal to "*->finished" or "deploy->inconsistent".
deployment = objects.Deployment.get(deploy_uuid)
deployer = deploy.EngineFactory.get_engine(deployment['config']['type'],
deployment)