Skip to content

Commit

Permalink
Reworked platform details query for compatibility with old DH versions
Browse files Browse the repository at this point in the history
  • Loading branch information
stanbrub committed Nov 5, 2024
1 parent a2b728f commit ac8cf72
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def bench_api_add_platform(name, value):
def bench_api_get_proc_info(proctype, prockey):
info = pm.process_info_log().where(['Type.equals(proctype)','Key.equals(prockey)'])
return next(info.iter_dict())['Value']
return info.j_table.columnIterator('Value').next()
def bench_api_add_proc_info(name, proctype, prockeys, delim=' '):
values = []
Expand Down

0 comments on commit ac8cf72

Please sign in to comment.