Make starting state non-reentrant

To avoid multiple racing calls to start node introspection.
A node is anyways locked by ironic during the reboot request.

Change-Id: I62b94932b06ce48450200ba353dd02b0d12a113f
Closes-Bug: #1721512
This commit is contained in:
dparalen 2017-10-05 11:54:41 +02:00
parent 37b556ab7a
commit 35f2d8c68f

View File

@ -128,7 +128,6 @@ State_space = [
'name': States.starting,
'next_states': {
Events.error: States.error,
Events.start: States.starting,
Events.wait: States.waiting,
Events.timeout: States.error
},