[VOL-4185] Reset OF connection on Core restart

This fix resets the OF connection between the OFAgent and
the OF controller when the connection between the Voltha Core and
OFAgent is down (Voltah Core restarts).  This allows ONOS to
prevent any actions done on Voltha including stats update.

Change-Id: I146b316e70a3d086902250a7321bad13ddaf6eca
diff --git a/internal/pkg/ofagent/ofagent.go b/internal/pkg/ofagent/ofagent.go
index e2b66f3..fec0679 100644
--- a/internal/pkg/ofagent/ofagent.go
+++ b/internal/pkg/ofagent/ofagent.go
@@ -177,6 +177,9 @@
 				logger.Debug(ctx, "ofagent-voltha-disconnect-event")
 				if state == ofaStateConnected {
 					state = ofaStateDisconnected
+					// Clear all the OF connections to the OF controller.  These will be recreated when the
+					// connection to voltha is established
+					ofa.clearAllOFClient()
 					ofa.volthaClient.Clear()
 					volthaDone()
 					volthaDone = nil