We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b94470 commit 1df814aCopy full SHA for 1df814a
2 files changed
CHANGELOG
@@ -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)
4
0.17.2
5
- fix: not all resource name edits were recognized in upload dialog (#84)
6
- fix: check for existence of DC resources before starting uploads (#85)
dcoraid/gui/upload/dlg_upload.py
@@ -317,7 +317,7 @@ def on_proceed(self):
317
318
# If the user uploads A LOT of resources in a dataset, we should
319
# warn them about possible performance penalties.
320
- max_num_res = 100
+ max_num_res = 1000
321
if len(paths) > max_num_res:
322
choice = QtWidgets.QMessageBox.question(
323
self, "Unusually large number of resources specified",
0 commit comments