Ensure IDs are unique in interleave_entries. This fixes a little bug
because gather_unique_dicts depends on unique IDs.
Signed-off-by: Steve Howard <showard@google.com>
git-svn-id: http://test.kernel.org/svn/autotest/trunk@3410 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/frontend/afe/rpc_utils.py b/frontend/afe/rpc_utils.py
index da34daa..c4003b1 100644
--- a/frontend/afe/rpc_utils.py
+++ b/frontend/afe/rpc_utils.py
@@ -474,7 +474,7 @@
execution_path=entry.execution_path(),
status=entry.status,
started_on=entry.started_on,
- id=entry.id)
+ id=str(entry.id) + type)
def _special_task_to_dict(special_task):