Move state link to developer docs

The state wiki has been moved/deprecated and the
developer docs at http://docs.openstack.org/developer
are now the better source of this information.

Update the code to follow the new and improved link.

Change-Id: If0ce7be53d7741015aa738cfd6e0c2c708a22c6d
This commit is contained in:
Joshua Harlow
2014-03-29 20:16:30 -07:00
parent 5048dfc2a9
commit b01f3c4c57

View File

@@ -53,7 +53,7 @@ TIMED_OUT = 'TIMED_OUT'
## Flow state transitions
# https://wiki.openstack.org/wiki/TaskFlow/States_of_Task_and_Flow#Flow_States
# See: http://docs.openstack.org/developer/taskflow/states.html
_ALLOWED_FLOW_TRANSITIONS = frozenset((
(PENDING, RUNNING), # run it!
@@ -124,7 +124,7 @@ def check_flow_transition(old_state, new_state):
## Task state transitions
# https://wiki.openstack.org/wiki/TaskFlow/States_of_Task_and_Flow#Task_States
# See: http://docs.openstack.org/developer/taskflow/states.html
_ALLOWED_TASK_TRANSITIONS = frozenset((
(PENDING, RUNNING), # run it!