Skip to content

Commit 1df814a

Browse files
committed
docs: increase warning threshold for max number of resources to 1000
1 parent 9b94470 commit 1df814a

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
0.17.3
2+
- docs: increase warning threshold for max number of resources to 1000
3+
(CKAN 2.11.3 handles datasets with many resources much better)
14
0.17.2
25
- fix: not all resource name edits were recognized in upload dialog (#84)
36
- fix: check for existence of DC resources before starting uploads (#85)

dcoraid/gui/upload/dlg_upload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ def on_proceed(self):
317317

318318
# If the user uploads A LOT of resources in a dataset, we should
319319
# warn them about possible performance penalties.
320-
max_num_res = 100
320+
max_num_res = 1000
321321
if len(paths) > max_num_res:
322322
choice = QtWidgets.QMessageBox.question(
323323
self, "Unusually large number of resources specified",

0 commit comments

Comments
 (0)