Skip to content
Snippets Groups Projects
Commit 3f2ac267 authored by Ruud Overeem's avatar Ruud Overeem
Browse files

BugID: 1000

Bugfix. Calling setState now with CONNECTED iso CREATED.
parent dfaadad7
No related branches found
No related tags found
No related merge requests found
......@@ -122,7 +122,8 @@ ObservationControl::ObservationControl(const string& cntlrName) :
registerProtocol (PA_PROTOCOL, PA_PROTOCOL_signalnames);
registerProtocol (F_PML_PROTOCOL, F_PML_PROTOCOL_signalnames);
setState(CTState::CREATED);
// we cannot use setState right now, wait for propertysets to come online
// setState(CTState::CREATED);
}
......@@ -381,6 +382,9 @@ GCFEvent::TResult ObservationControl::starting_state(GCFEvent& event,
signal (SIGINT, ObservationControl::sigintHandler); // ctrl-c
signal (SIGTERM, ObservationControl::sigintHandler); // kill
// register what we are doing
setState(CTState::CONNECT);
// update PVSS.
LOG_TRACE_FLOW ("Updateing state to PVSS");
itsPropertySet->setValue(PVSSNAME_FSM_CURACT, GCFPVString("initial"));
......@@ -820,7 +824,7 @@ void ObservationControl::doHeartBeatTask()
CTState cts; // report that state is reached.
setState(cts.stateAck(itsState));
itsBusyControllers = 0;
// inform Parent (ignore funtion-result)
// inform Parent (ignore function-result)
sendControlResult(*itsParentPort, cts.signal(itsState), getName(),
itsChildResult);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment