[VOL-5575]:Reconcile condition removed in core as reconcile fail triggers delete onu
Change-Id: I09f5da21c9106dccee52f631a6e570c1d1662bea
Signed-off-by: balaji.nagarajan <balaji.nagarajan@radisys.com>
diff --git a/VERSION b/VERSION
index d2577d9..a0fc9e0 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-3.7.7
+3.7.8
diff --git a/rw_core/core/device/agent_transient_state.go b/rw_core/core/device/agent_transient_state.go
index 2867fef..df89042 100644
--- a/rw_core/core/device/agent_transient_state.go
+++ b/rw_core/core/device/agent_transient_state.go
@@ -76,6 +76,6 @@
}
func (agent *Agent) isInReconcileState(device *voltha.Device) bool {
- return device.OperStatus == common.OperStatus_RECONCILING || device.OperStatus == common.OperStatus_RECONCILING_FAILED ||
+ return device.OperStatus == common.OperStatus_RECONCILING ||
agent.matchTransientState(core.DeviceTransientState_RECONCILE_IN_PROGRESS)
}