Cleaning up more todos.
removing TODO on line 157 & 164 of voltha/adapter_agent.py
and entering it into backlog as CORD-838
Change-Id: I58483382811cc947373397e046dcdad7dc79a244
diff --git a/voltha/core/adapter_agent.py b/voltha/core/adapter_agent.py
index 5a0e1de..d5f2a7c 100644
--- a/voltha/core/adapter_agent.py
+++ b/voltha/core/adapter_agent.py
@@ -154,14 +154,14 @@
assert isinstance(device, Device)
self._make_up_to_date('/devices', device.id, device)
- # TODO for now, just map everything into a single device group
- # which we create if it does not yet exist
+ # Ultimately, assign devices to device grpups.
+ # see https://jira.opencord.org/browse/CORD-838
dg = DeviceGroup(id='1')
self._make_up_to_date('/device_groups', dg.id, dg)
# add device to device group
- # TODO how to do that?
+ # see https://jira.opencord.org/browse/CORD-838
def update_device(self, device):
assert isinstance(device, Device)