[VOL-5430] Removed reconcilation failure check

Signed-off-by: bseeniva <balaji.seenivasan@radisys.com>
Change-Id: I9f0a9c9bc705ea726c9b55769eeed212568ef3a9
diff --git a/VERSION b/VERSION
index 16d34d4..fc957cc 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-3.6.7-dev1
+3.6.7-dev2
diff --git a/rw_core/core/device/agent.go b/rw_core/core/device/agent.go
index 92a7e1c..ef358f7 100755
--- a/rw_core/core/device/agent.go
+++ b/rw_core/core/device/agent.go
@@ -1530,15 +1530,6 @@
 
 retry:
 	for {
-		// If the operations state of the device is RECONCILING_FAILED then we do not
-		// want to continue to attempt reconciliation.
-		deviceRef := agent.getDeviceReadOnlyWithoutLock()
-		if deviceRef.OperStatus == common.OperStatus_RECONCILING_FAILED {
-			logger.Warnw(ctx, "reconciling-failed-halting-retries",
-				log.Fields{"device-id": device.Id})
-			agent.requestQueue.RequestComplete()
-			break retry
-		}
 
 		// Use an exponential back off to prevent getting into a tight loop
 		duration := reconcilingBackoff.NextBackOff()