Changing the flowsChunkSize to stay below 64KB in TT workflow at scale

Change-Id: I507bd68f8ff6d61c85503538d186673cd8094591
(cherry picked from commit e8d2e9ce7874eb38855eca8d7c31d48b4bb842c7)
diff --git a/.gitreview b/.gitreview
index c04b89f..1f11749 100644
--- a/.gitreview
+++ b/.gitreview
@@ -3,3 +3,4 @@
 port=29418
 project=ofagent-go.git
 defaultremote=origin
+defaultbranch=voltha-2.5
diff --git a/VERSION b/VERSION
index 3a3cd8c..259bb26 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.3.1
+1.3.2-dev
diff --git a/internal/pkg/openflow/client.go b/internal/pkg/openflow/client.go
index b7d5a28..6db5c03 100644
--- a/internal/pkg/openflow/client.go
+++ b/internal/pkg/openflow/client.go
@@ -53,7 +53,7 @@
 
 	// according to testing this is the maximum content of an
 	// openflow message to remain under 64KB
-	ofcFlowsChunkSize     = 400 // this amount of flows is around 40KB for DT, 47KB ATT and 61KB for TT
+	ofcFlowsChunkSize     = 350 // this amount of flows is around 40KB for DT, 47KB ATT and 61KB for TT
 	ofcPortsChunkSize     = 550 // this amount of port stats is around 61KB
 	ofcPortsDescChunkSize = 900 // this amount of port desc is around 57KB
 )