diff --git a/libs/wlgen/wlgen/rta.py b/libs/wlgen/wlgen/rta.py index 06a65614f5160ef8e981a5c11795f52aee95bc2f..1ae6e521cdab29236163d65141cf6d7f715227fc 100644 --- a/libs/wlgen/wlgen/rta.py +++ b/libs/wlgen/wlgen/rta.py @@ -306,6 +306,11 @@ class RTA(Workload): ifile.close() ofile.close() + with open(self.json) as f: + conf = json.load(f) + for tid in conf['tasks']: + self.tasks[tid] = {'pid': -1} + return self.json def _confProfile(self):