Skip to content

Commit

Permalink
[#27] bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dcvan24 committed Jun 14, 2018
1 parent 552835f commit 704e863
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion schedule/plugin/local/location_aware.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ async def schedule(self, app, agents):
self.logger.info('iRODS API is not properly set. Fallback to default scheduler')
return sched
for c in sched.containers:
if not c.data.input: continue
if not c.data or not c.data.input: continue
regions = {}
for lfn in c.data.input:
data_obj = await self._get_data_object(lfn)
Expand Down

0 comments on commit 704e863

Please sign in to comment.