[VOL-4428] openonu-adapter-go - rw-core is using delete force when ONUS are in reconciling and delete OLT is issued

As suggested in Slack - all three related patches should be merged and then thoroughly tested.

Change-Id: I8fc6176211a0c0ba7be546950465cca86320b7bd
diff --git a/internal/pkg/pmmgr/onu_metrics_manager.go b/internal/pkg/pmmgr/onu_metrics_manager.go
index a71beed..f78e52b 100755
--- a/internal/pkg/pmmgr/onu_metrics_manager.go
+++ b/internal/pkg/pmmgr/onu_metrics_manager.go
@@ -255,9 +255,12 @@
 	GemPortHistoryFrequency = L2PmCollectionInterval
 )
 
+// CPmKvStorePrefixBase - kv store base path of ONU specific PM data
+const CPmKvStorePrefixBase = cmn.CBasePathOnuKVStore + "/pm-data" // <some-base-path>/openonu/pm-data
+
 // KV Store related constants
 const (
-	cPmKvStorePrefix    = "%s/openonu/pm-data/%s" // <some-base-path>/openonu/pm-data/<onu-device-id>
+	cPmKvStorePrefix    = CPmKvStorePrefixBase + "/%s" // <some-base-path>/openonu/pm-data/<onu-device-id>
 	cPmAdd              = "add"
 	cPmAdded            = "added"
 	cPmRemove           = "remove"