From 7e7f692a3054403a0463a3a7aa148a67dff57ad4 Mon Sep 17 00:00:00 2001 From: Cristiano Urban Date: Fri, 18 Jun 2021 14:49:58 +0200 Subject: [PATCH] Changed threshold of num of nodes for import email notification. Signed-off-by: Cristiano Urban --- transfer_service/import_executor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transfer_service/import_executor.py b/transfer_service/import_executor.py index d8296d9..ee7ba67 100644 --- a/transfer_service/import_executor.py +++ b/transfer_service/import_executor.py @@ -190,7 +190,7 @@ class ImportExecutor(TaskExecutor): """ - if len(nodeList) <= 4 * (10 ** 3): + if len(nodeList) <= 10 ** 5: m.setMessageWithAttachment("VOSpace import notification", msg, nodeListFile) else: info = f""" -- GitLab