Skip to content

Commit a01a1dd

Browse files
committed
increase dataset query limit
1 parent 54609ca commit a01a1dd

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pubweb/services/dataset.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ def find_by_project(self, project_id: str, name: str = None) -> List[Dataset]:
5656
'status': {
5757
'eq': 'COMPLETED'
5858
}
59-
}
59+
},
60+
'limit': 10000
6061
}
6162
if name:
6263
variables['filter']['name'] = {'eq': name}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
setup(
3535
name='pubweb',
36-
version='0.3.4',
36+
version='0.3.5',
3737
author='Fred Hutch',
3838
license='MIT',
3939
author_email='[email protected]',

0 commit comments

Comments
 (0)