Skip to content

Commit

Permalink
Merge branch 'task/FP-737--manage-allocations' into task/FP-737-final-UI
Browse files Browse the repository at this point in the history
  • Loading branch information
rstijerina authored Jun 14, 2022
2 parents fe233cb + b1f0e79 commit 404551d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
20 changes: 14 additions & 6 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
## Overview: ##
## Overview

## Related Jira tickets: ##


## Related

* [FP-123](https://jira.tacc.utexas.edu/browse/FP-123)

## Summary of Changes: ##
## Changes



## Testing

## Testing Steps: ##
1.

## UI Photos:
## UI



## Notes

## Notes: ##
4 changes: 2 additions & 2 deletions server/portal/libs/agave/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ def iterate_level(client, system, path, limit=100):
while True:
page = client.files.list(systemId=system,
filePath=urllib.parse.quote(path),
offset=offset,
limit=limit)
offset=int(offset),
limit=int(limit))
yield from page
offset += limit
if len(page) != limit:
Expand Down

0 comments on commit 404551d

Please sign in to comment.