Skip to content

Commit

Permalink
Fix for when CPU is too busy to respond
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Smith committed Jan 23, 2017
1 parent c88dbc5 commit b62ae55
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions acitoolkit/aciphysobject.py
Original file line number Diff line number Diff line change
Expand Up @@ -3303,6 +3303,8 @@ def get(cls, session, parent):
ret = session.get(node_query_url)
processes = ret.json()['imdata']
for child in processes:
if 'procProc' not in child:
continue
if child['procProc']:
process = Process()
process._populate_from_attributes(child['procProc']['attributes'])
Expand Down

0 comments on commit b62ae55

Please sign in to comment.