Cleaning up TODO items

removing TODO on line 162 of chameleon/grpc_client
and entering it into backlog as CORD-815

removing TODO on line 135 of cli/utils.py
and entering it into backlog as CORD-816

removing TODO on line 155 of cli/utils.py
and entering it into backlog as CORD-817

removing TODO on line 94 of common/utils/consulhelpers.py
and entering it into backlog as CORD-818

Change-Id: I736ea678b16c9b0e85a3cf0aabe96da19caae64d
diff --git a/cli/utils.py b/cli/utils.py
index 7ea9c77..f4111e3 100644
--- a/cli/utils.py
+++ b/cli/utils.py
@@ -132,7 +132,8 @@
         for field in flow['match']['oxm_fields']:
             assert field['oxm_class'].endswith('OPENFLOW_BASIC')
             ofb = field['ofb_field']
-            assert not ofb['has_mask'], 'masked match not handled yet'  # TODO
+            # see CORD-816 (https://jira.opencord.org/browse/CORD-816)
+            assert not ofb['has_mask'], 'masked match not handled yet'
             type = ofb['type'][len('OFPXMT_OFB_'):]
             table.add_cell(i, *field_printers[type](ofb))
 
@@ -151,7 +152,7 @@
 
     table.print_table(header, printfn)
 
-    # TODO groups TBF
+    # see CORD-817 (https://jira.opencord.org/browse/CORD-817)
     assert len(groups) == 0