commit | 6d474adf07e88a84a515d9de44303788a46c3952 | [log] [tgz] |
---|---|---|
author | Chip Boling <chipboling@gmail.com> | Fri Jan 29 08:36:31 2021 -0600 |
committer | Chip Boling <chipboling@gmail.com> | Fri Jan 29 08:36:31 2021 -0600 |
tree | 2e1ecced0e203bfab8b1d8cde364a807b33282a6 | |
parent | 1d714e4eedde4523820baf66e22a115bc8bc8f75 [diff] |
VOL-3799: Fix bug (syntax error) introduced in VOL-3757 Change-Id: If40936b828cc5d893cd23cd1e84d2f29bb20c5ff
diff --git a/VERSION b/VERSION index 24ba9a3..860487c 100644 --- a/VERSION +++ b/VERSION
@@ -1 +1 @@ -2.7.0 +2.7.1
diff --git a/python/adapters/brcm_openomci_onu/brcm_openomci_onu_handler.py b/python/adapters/brcm_openomci_onu/brcm_openomci_onu_handler.py index d2486fe..a44b033 100755 --- a/python/adapters/brcm_openomci_onu/brcm_openomci_onu_handler.py +++ b/python/adapters/brcm_openomci_onu/brcm_openomci_onu_handler.py
@@ -1435,7 +1435,7 @@ # OMCI_RESPONSE. Both have identical formats outside of type. So accept # both. if request.header.type in (InterAdapterMessageType.OMCI_RESPONSE, - InterAdapterMessageType.OMCI_REQUEST: + InterAdapterMessageType.OMCI_REQUEST): omci_msg = InterAdapterOmciMessage() request.body.Unpack(omci_msg) self.log.debug('inter-adapter-recv-omci', omci_msg=hexify(omci_msg.message))