VOL-3201 The vlan tagging task is sending an omci set message to downstream mode per tech profile. But, The extended vlan tagging ME is creating just one time. In this case, The one omci message will be enough for downstream mode

Change-Id: I1b834096a7ac48c2be56f61499b7af449b3f1133
diff --git a/python/adapters/brcm_openomci_onu/omci/brcm_mib_download_task.py b/python/adapters/brcm_openomci_onu/omci/brcm_mib_download_task.py
index 1e8003c..a3fcc47 100644
--- a/python/adapters/brcm_openomci_onu/omci/brcm_mib_download_task.py
+++ b/python/adapters/brcm_openomci_onu/omci/brcm_mib_download_task.py
@@ -311,6 +311,25 @@
             results = yield omci_cc.send(frame)
             self.check_status_and_state(results, 'create-extended-vlan-tagging-operation-configuration-data')
 
+            attributes = dict(
+                # Specifies the TPIDs in use and that operations in the downstream direction are
+                # inverse to the operations in the upstream direction
+                input_tpid=self._input_tpid,  # input TPID
+                output_tpid=self._output_tpid,  # output TPID
+                downstream_mode=0,  # inverse of upstream
+            )
+
+            msg = ExtendedVlanTaggingOperationConfigurationDataFrame(
+                self._mac_bridge_service_profile_entity_id + uni_port.mac_bridge_port_num,  # Bridge Entity ID
+                attributes=attributes
+            )
+
+            frame = msg.set()
+            self.log.debug('openomci-msg', omci_msg=msg)
+            self.strobe_watchdog()
+            results = yield self._device.omci_cc.send(frame)
+            self.check_status_and_state(results, 'set-extended-vlan-tagging-operation-configuration-data')
+
         except TimeoutError as e:
             self.log.warn('rx-timeout-inital-per-uni-setup', e=e)
             raise
diff --git a/python/adapters/brcm_openomci_onu/omci/brcm_vlan_filter_task.py b/python/adapters/brcm_openomci_onu/omci/brcm_vlan_filter_task.py
index 83a517f..61550c0 100644
--- a/python/adapters/brcm_openomci_onu/omci/brcm_vlan_filter_task.py
+++ b/python/adapters/brcm_openomci_onu/omci/brcm_vlan_filter_task.py
@@ -364,24 +364,6 @@
             yield self._create_vlan_filter_entity(vlan_tagging_entity_id)
 
         self.log.info('setting-vlan-tagging')
-        attributes = dict(
-            # Specifies the TPIDs in use and that operations in the downstream direction are
-            # inverse to the operations in the upstream direction
-            input_tpid=self._input_tpid,  # input TPID
-            output_tpid=self._output_tpid,  # output TPID
-            downstream_mode=0,  # inverse of upstream
-        )
-
-        msg = ExtendedVlanTaggingOperationConfigurationDataFrame(
-            extended_vlan_tagging_entity_id,  # Bridge Entity ID
-            attributes=attributes
-        )
-
-        frame = msg.set()
-        self.log.debug('openomci-msg', omci_msg=msg)
-        self.strobe_watchdog()
-        results = yield self._device.omci_cc.send(frame)
-        self.check_status_and_state(results, 'set-extended-vlan-tagging-operation-configuration-data')
 
         # Onu-Transparent
         if self._set_vlan_id == RESERVED_TRANSPARENT_VLAN:
@@ -461,24 +443,6 @@
                                      + self._tp_id)
         extended_vlan_tagging_entity_id = self._mac_bridge_service_profile_entity_id + \
                                           self._uni_port.mac_bridge_port_num
-        attributes = dict(
-            # Specifies the TPIDs in use and that operations in the downstream direction are
-            # inverse to the operations in the upstream direction
-            input_tpid=self._input_tpid,  # input TPID
-            output_tpid=self._output_tpid,  # output TPID
-            downstream_mode=0,  # inverse of upstream
-        )
-
-        msg = ExtendedVlanTaggingOperationConfigurationDataFrame(
-            extended_vlan_tagging_entity_id,  # Bridge Entity ID
-            attributes=attributes
-        )
-
-        frame = msg.set()
-        self.log.debug('openomci-msg', omci_msg=msg)
-        self.strobe_watchdog()
-        results = yield self._device.omci_cc.send(frame)
-        self.check_status_and_state(results, 'set-extended-vlan-tagging-operation-configuration-data')
 
         # Onu-Transparent
         if self._set_vlan_id == RESERVED_TRANSPARENT_VLAN: