DIRAC 9.0.0a59__py3-none-any.whl → 9.0.0a61__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. DIRAC/AccountingSystem/Client/AccountingCLI.py +0 -140
  2. DIRAC/AccountingSystem/Client/DataStoreClient.py +0 -13
  3. DIRAC/AccountingSystem/Client/Types/BaseAccountingType.py +0 -7
  4. DIRAC/AccountingSystem/ConfigTemplate.cfg +0 -5
  5. DIRAC/AccountingSystem/Service/DataStoreHandler.py +0 -72
  6. DIRAC/Core/DISET/private/BaseClient.py +1 -2
  7. DIRAC/Core/scripts/dirac_apptainer_exec.py +2 -1
  8. DIRAC/DataManagementSystem/Agent/RequestOperations/RemoveFile.py +7 -6
  9. DIRAC/DataManagementSystem/Utilities/DMSHelpers.py +5 -1
  10. DIRAC/FrameworkSystem/Client/ComponentInstaller.py +4 -2
  11. DIRAC/MonitoringSystem/DB/MonitoringDB.py +0 -20
  12. DIRAC/MonitoringSystem/Service/MonitoringHandler.py +0 -33
  13. DIRAC/Resources/Computing/BatchSystems/Condor.py +108 -109
  14. DIRAC/Resources/Computing/HTCondorCEComputingElement.py +33 -15
  15. DIRAC/Resources/Computing/test/Test_HTCondorCEComputingElement.py +67 -49
  16. DIRAC/Resources/Storage/StorageBase.py +4 -2
  17. DIRAC/WorkloadManagementSystem/Client/DownloadInputData.py +3 -2
  18. DIRAC/WorkloadManagementSystem/Client/test/Test_Client_DownloadInputData.py +29 -0
  19. DIRAC/WorkloadManagementSystem/JobWrapper/JobWrapper.py +9 -6
  20. DIRAC/WorkloadManagementSystem/Service/PilotManagerHandler.py +6 -3
  21. {dirac-9.0.0a59.dist-info → dirac-9.0.0a61.dist-info}/METADATA +1 -1
  22. {dirac-9.0.0a59.dist-info → dirac-9.0.0a61.dist-info}/RECORD +26 -26
  23. {dirac-9.0.0a59.dist-info → dirac-9.0.0a61.dist-info}/WHEEL +0 -0
  24. {dirac-9.0.0a59.dist-info → dirac-9.0.0a61.dist-info}/entry_points.txt +0 -0
  25. {dirac-9.0.0a59.dist-info → dirac-9.0.0a61.dist-info}/licenses/LICENSE +0 -0
  26. {dirac-9.0.0a59.dist-info → dirac-9.0.0a61.dist-info}/top_level.txt +0 -0
@@ -10,6 +10,7 @@ and a Watchdog Agent that can monitor its progress.
10
10
  :caption: JobWrapper options
11
11
 
12
12
  """
13
+
13
14
  import contextlib
14
15
  import datetime
15
16
  import glob
@@ -119,14 +120,16 @@ class JobWrapper:
119
120
  self.pilotRef = gConfig.getValue("/LocalSite/PilotReference", "Unknown")
120
121
  self.cpuNormalizationFactor = gConfig.getValue("/LocalSite/CPUNormalizationFactor", 0.0)
121
122
  self.bufferLimit = gConfig.getValue(self.section + "/BufferLimit", 10485760)
122
- self.defaultOutputSE = getDestinationSEList(
123
- gConfig.getValue("/Resources/StorageElementGroups/SE-USER", []), self.siteName
124
- )
123
+ try:
124
+ self.defaultOutputSE = getDestinationSEList("SE-USER", self.siteName)
125
+ except RuntimeError:
126
+ self.defaultOutputSE = []
125
127
  self.defaultCatalog = gConfig.getValue(self.section + "/DefaultCatalog", [])
126
128
  self.masterCatalogOnlyFlag = gConfig.getValue(self.section + "/MasterCatalogOnlyFlag", True)
127
- self.defaultFailoverSE = getDestinationSEList(
128
- gConfig.getValue("/Resources/StorageElementGroups/Tier1-Failover", []), self.siteName
129
- )
129
+ try:
130
+ self.defaultFailoverSE = getDestinationSEList("Tier1-Failover", self.siteName)
131
+ except RuntimeError:
132
+ self.defaultFailoverSE = []
130
133
  self.defaultOutputPath = ""
131
134
  self.retryUpload = gConfig.getValue(self.section + "/RetryUpload", False)
132
135
  self.dm = DataManager()
@@ -93,10 +93,10 @@ class PilotManagerHandler(RequestHandler):
93
93
 
94
94
  result = self.pilotAgentsDB.getPilotInfo(pilotReference)
95
95
  if not result["OK"]:
96
- self.log.error("Failed to get info for pilot", result["Message"])
96
+ self.log.error("Failed to get info for pilot", f"{pilotReference}: {result['Message']}")
97
97
  return S_ERROR("Failed to get info for pilot")
98
98
  if not result["Value"]:
99
- self.log.warn("The pilot info is empty", pilotReference)
99
+ self.log.warn("The pilot info is empty for", pilotReference)
100
100
  return S_ERROR("Pilot info is empty")
101
101
 
102
102
  pilotDict = result["Value"][pilotReference]
@@ -105,11 +105,14 @@ class PilotManagerHandler(RequestHandler):
105
105
  # classic logs first, by default
106
106
  funcs = [self._getPilotOutput, self._getRemotePilotOutput]
107
107
  if remote:
108
+ self.log.info("Trying to retrieve output of pilot", f"{pilotReference} remotely first")
108
109
  funcs.reverse()
109
110
 
110
111
  result = funcs[0](pilotReference, pilotDict)
111
112
  if not result["OK"]:
112
- self.log.warn("Pilot log retrieval failed (first attempt), remote ?", remote)
113
+ self.log.warn(
114
+ "Failed getting output for pilot", f"{pilotReference}. Will try another approach: {result['Message']}"
115
+ )
113
116
  result = funcs[1](pilotReference, pilotDict)
114
117
  return result
115
118
  else:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: DIRAC
3
- Version: 9.0.0a59
3
+ Version: 9.0.0a61
4
4
  Summary: DIRAC is an interware, meaning a software framework for distributed computing.
5
5
  Home-page: https://github.com/DIRACGrid/DIRAC/
6
6
  License: GPL-3.0-only
@@ -1,15 +1,15 @@
1
1
  DIRAC/__init__.py,sha256=IrCjUEvcKwE2KLYNuxiADIGrtOgSCb8MOoK8QVDsERU,11301
2
- DIRAC/AccountingSystem/ConfigTemplate.cfg,sha256=QCE21jXKXJIr1gEWMIpzKEczeqOKInfnTNkwYY0QR_c,1033
2
+ DIRAC/AccountingSystem/ConfigTemplate.cfg,sha256=xT_JHJGumwEx_w1aditaxn3zq0r4ehIScX4qYFwjT3o,819
3
3
  DIRAC/AccountingSystem/__init__.py,sha256=E88siUatzE7vxErfezaEuZxK4yfHvkKCqqC9toGvqwg,539
4
4
  DIRAC/AccountingSystem/Agent/NetworkAgent.py,sha256=qHY-aewzEYS99VsW_Ka-aoap2kqNEAe9qcH3jg25yqI,10999
5
5
  DIRAC/AccountingSystem/Agent/__init__.py,sha256=JNmpSKBieczXNZ8srT1yYs_j6gCT8JKhqE_nhcFMel4,45
6
6
  DIRAC/AccountingSystem/Agent/test/Test_NetworkAgent.py,sha256=DvWf5QQDhjCI94LT1l9VkOFmR8jK7_2Jpfvn5_ZDMFo,3746
7
- DIRAC/AccountingSystem/Client/AccountingCLI.py,sha256=RRGCAchP3JbNeD020zS9U7m36VBiDfrV7KmXiejuabk,7542
8
- DIRAC/AccountingSystem/Client/DataStoreClient.py,sha256=pzQd3o_oUf9AZmiWst3oLARlh9ebgrN-jVwB-pQAOA4,6110
7
+ DIRAC/AccountingSystem/Client/AccountingCLI.py,sha256=ME7UyAdIzznx9NLtjnLe2-uIc9lB_Brnc9qa_zrtFVE,2401
8
+ DIRAC/AccountingSystem/Client/DataStoreClient.py,sha256=C7UofNw3NIecJhg1p2cQuIJ42Vr3TM4tWdhjlTAm4gs,5592
9
9
  DIRAC/AccountingSystem/Client/ReportCLI.py,sha256=6BGufbZN_5MUJeiYgdnISfyCbAMyjVX7-mDxZLiedJ4,1907
10
10
  DIRAC/AccountingSystem/Client/ReportsClient.py,sha256=smGoZ4pDTj6hjj0cDpQsRmNjbuxX6ukc5dbzNliXn10,3587
11
11
  DIRAC/AccountingSystem/Client/__init__.py,sha256=dT6KQbA-0PPotnu-T_ofVcW-HmuRL3Q9t2HRAERkC6E,46
12
- DIRAC/AccountingSystem/Client/Types/BaseAccountingType.py,sha256=PGNwFKYS6bn5VRazzyRwQLN6gn04VXpKbh2xDRaRekA,6388
12
+ DIRAC/AccountingSystem/Client/Types/BaseAccountingType.py,sha256=NrH2ywkKq7vLs7voMH0XEsL7OOanbMWxeRjT-Kd9BNk,6183
13
13
  DIRAC/AccountingSystem/Client/Types/DataOperation.py,sha256=LTklg_czWwjYMZktswD-JtnnyV8VTQ1SC_d9ejIBvRs,1224
14
14
  DIRAC/AccountingSystem/Client/Types/Job.py,sha256=oBwd_U2HK0Ej9iEJFUcTmmdyFn1nJWQ_k4ZbAkgC6Dc,2176
15
15
  DIRAC/AccountingSystem/Client/Types/Network.py,sha256=xKoiolYkUjG8hpNAzJEdp6luc6TARyGlIa7UYs9QYeA,1165
@@ -23,7 +23,7 @@ DIRAC/AccountingSystem/DB/AccountingDB.sql,sha256=caJDh6ioNQq7uoBvBNW2ZgO5bAKj6q
23
23
  DIRAC/AccountingSystem/DB/MultiAccountingDB.py,sha256=IiRBqCnyVhP16-hW0pwSOUXYBVAEjQQPPioK7fzVR0s,3755
24
24
  DIRAC/AccountingSystem/DB/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
25
  DIRAC/AccountingSystem/DB/test/Test_AccountingDB.py,sha256=vnMd_CrK7zBTieno9U5yMtfE5KwqX_xiETbaiBMCFzw,15849
26
- DIRAC/AccountingSystem/Service/DataStoreHandler.py,sha256=ci-tr8iUL_VmwjobDvZNsyoCtb6KpQrCbpvnBHXpbZc,6047
26
+ DIRAC/AccountingSystem/Service/DataStoreHandler.py,sha256=e5RjESW16kYaBQ0bhUJuHZULizZzcOTXYg2c_uMxcdk,3338
27
27
  DIRAC/AccountingSystem/Service/ReportGeneratorHandler.py,sha256=fksRV5NN0GVkNSmnvjEWQop0TrQ8TiMUmJf8CcIAhRw,8485
28
28
  DIRAC/AccountingSystem/Service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
29
  DIRAC/AccountingSystem/private/DBUtils.py,sha256=2yTapP3e5WS67d_yWW0_uTeDUxi62Zr0Ogp3vfooUa8,12869
@@ -125,7 +125,7 @@ DIRAC/Core/DISET/ServiceReactor.py,sha256=JU3cPaVvXVUtbkXm1KPje4T4Ksg1mH728FW_OW
125
125
  DIRAC/Core/DISET/ThreadConfig.py,sha256=Q43BnQ8yliFliU65rLxHBV49c4TFzrYq9Ewe5n2vASQ,3086
126
126
  DIRAC/Core/DISET/TransferClient.py,sha256=2WDH3Be5NSAY4xWRK0RL2OnKeQLtaPRIJLQeeVYY5V8,7657
127
127
  DIRAC/Core/DISET/__init__.py,sha256=ZPbhSIBCK14nC9R5drkX8lfK2YHY7g-WVg0Zuy3uHAc,1085
128
- DIRAC/Core/DISET/private/BaseClient.py,sha256=qiDMZk2-XL8mFpzSKqyw_qvFwWWWzE5g-7w9lP4gHTo,27875
128
+ DIRAC/Core/DISET/private/BaseClient.py,sha256=CCyTi61cqXGCEavHpwNIjrXSXQK-7FFS3vV48vot0NA,27858
129
129
  DIRAC/Core/DISET/private/FileHelper.py,sha256=Tb1UGZX_dnBE-nRljNrHFP2-0XGiC1j3c2-lUgaDo1M,14383
130
130
  DIRAC/Core/DISET/private/GatewayService.py,sha256=Doe5NPpv0HH3AQA0HcIw0D95bFbohR3NxO5SuZUagfg,20839
131
131
  DIRAC/Core/DISET/private/InnerRPCClient.py,sha256=Q60yR3JZinPlFYDU080ltrderN37oHnAZLmYZfTgC_c,2922
@@ -323,7 +323,7 @@ DIRAC/Core/Workflow/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
323
323
  DIRAC/Core/Workflow/test/step_g.py,sha256=hlncZ_tbb74wz0mRxyHTl0NnjRut2ysWLgUfiTvi9yo,21830
324
324
  DIRAC/Core/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
325
325
  DIRAC/Core/scripts/dirac_agent.py,sha256=Nx1qlr2YOQobWkO1FtzFyL00tF8TH1HmonDsfbsCDzk,1644
326
- DIRAC/Core/scripts/dirac_apptainer_exec.py,sha256=2WwpPLUPZWcYRjeLd6SIIXmLVSK3ibbn-RaZXtg5CPA,4197
326
+ DIRAC/Core/scripts/dirac_apptainer_exec.py,sha256=uRPyQ27khQk_d8qMJwA3u9A-eJV8pGytSj0JXgGKptI,4298
327
327
  DIRAC/Core/scripts/dirac_cert_convert.py,sha256=3ThPmb1Tg-UgeH-3ZV0ilkZ8-H4RsK8SOszLuuYG-vs,2498
328
328
  DIRAC/Core/scripts/dirac_configure.py,sha256=c3ZfQUe_JUJASi3iuvl4qD83kyfWvS_QixISyG833sg,29494
329
329
  DIRAC/Core/scripts/dirac_executor.py,sha256=ZZnr8NjjBmmKmQhUnstRklw9HTsP75XRXnkBawDWdnE,1722
@@ -351,7 +351,7 @@ DIRAC/DataManagementSystem/Agent/RequestOperations/PutAndRegister.py,sha256=yajU
351
351
  DIRAC/DataManagementSystem/Agent/RequestOperations/ReTransfer.py,sha256=UKTx3M9y1R13KUWkCSehWH__LrJC1UT_4Hya8xfbnDY,4470
352
352
  DIRAC/DataManagementSystem/Agent/RequestOperations/RegisterFile.py,sha256=21_P-3-qLrCz4H3hvt9bX8c7dZ_7mJYdQOU6QOVxfsc,4858
353
353
  DIRAC/DataManagementSystem/Agent/RequestOperations/RegisterReplica.py,sha256=obFQAVy43TCE93X8q9XD0wUzgjsJRV_BpBcasb2dDcs,6647
354
- DIRAC/DataManagementSystem/Agent/RequestOperations/RemoveFile.py,sha256=x-_qzZJ0cAkfOQhfclzQ9LBMST_kasO53zJMkPhohIE,10378
354
+ DIRAC/DataManagementSystem/Agent/RequestOperations/RemoveFile.py,sha256=eXVdBC75bWCSChs4SJLxME_WEGVbnFR7Ce_a5KJzLzU,10409
355
355
  DIRAC/DataManagementSystem/Agent/RequestOperations/RemoveReplica.py,sha256=PTXocMcawugGtLhj9lCfFqDRG5D1I8ciFGBeRmrdLGo,8020
356
356
  DIRAC/DataManagementSystem/Agent/RequestOperations/ReplicateAndRegister.py,sha256=IMgwgOFYVd6LAG5-5gaqYkjgonDLT78vJBZ_HnAiiG4,27942
357
357
  DIRAC/DataManagementSystem/Agent/RequestOperations/StagingCallback.py,sha256=C80Oyd8QEFPXjPRjXeED2WXlBX0hAdtL0JdQfcYHohc,1423
@@ -440,7 +440,7 @@ DIRAC/DataManagementSystem/Service/TornadoFileCatalogHandler.py,sha256=Exqqwl83C
440
440
  DIRAC/DataManagementSystem/Service/TornadoS3GatewayHandler.py,sha256=zJKf6Z_s0TF1eOqf4Z3ZsRZIcdEOcvT1OvcD7UaM9Wc,491
441
441
  DIRAC/DataManagementSystem/Service/__init__.py,sha256=gpMK8hQ30qy4_std-qzmjDuWA9QHVD5ceNJMyZQv44E,54
442
442
  DIRAC/DataManagementSystem/Service/test/Test_Service.py,sha256=hhb-nprUiRd2qaAqNeHM1U83xFhPdT41uOgEzlBxzBI,304
443
- DIRAC/DataManagementSystem/Utilities/DMSHelpers.py,sha256=L0PrpZJCPt1tBya2KayANq5QExIkBgTHmnfLSsUjT3Q,19052
443
+ DIRAC/DataManagementSystem/Utilities/DMSHelpers.py,sha256=UXResyFhzq4PQY-40gdLjav7zQiss0ZSTimVvHJqdOE,19211
444
444
  DIRAC/DataManagementSystem/Utilities/ResolveSE.py,sha256=Z_Gamxo31OhBWCBtO_1HkC0sj1wmhifGET9-xQSpqx0,4480
445
445
  DIRAC/DataManagementSystem/Utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
446
446
  DIRAC/DataManagementSystem/Utilities/test/Test_resolveSE.py,sha256=p9TukPS-adp4WpKFzT0pHvvsGFTRwLmb3ITtKxUNjIY,10846
@@ -491,7 +491,7 @@ DIRAC/FrameworkSystem/Agent/ProxyRenewalAgent.py,sha256=FMOx0IWpTISv7RyIeHg1NYr3
491
491
  DIRAC/FrameworkSystem/Agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
492
492
  DIRAC/FrameworkSystem/Agent/test/Test_ComponentSupervisionAgent.py,sha256=JAnTVE7fOAmEpboNhIKE2Arc7ibLoRszAbJ3lW8ReIg,32200
493
493
  DIRAC/FrameworkSystem/Client/BundleDeliveryClient.py,sha256=bA9QSQpFy1uBLhfRSoRT9Eld40WGlNDKX95TSAaJjkY,7546
494
- DIRAC/FrameworkSystem/Client/ComponentInstaller.py,sha256=CCpzqHdLeTuF0itwks0-gecpdOBd1GvgWW8O0Sp7M-k,97238
494
+ DIRAC/FrameworkSystem/Client/ComponentInstaller.py,sha256=6kwLgZRZBFLoHp4B2pMx7MHVPXNIWpg3CMRlM5qgcCc,97256
495
495
  DIRAC/FrameworkSystem/Client/ComponentMonitoringClient.py,sha256=mnHqmezjPcdL8eJbKhVp3a7Fo051SMMt8uoc_pdKaxc,391
496
496
  DIRAC/FrameworkSystem/Client/Logger.py,sha256=_zh5KIH_51tFtPiMfL2fe9qOduUDIP_XBSWkqeO189s,313
497
497
  DIRAC/FrameworkSystem/Client/NotificationClient.py,sha256=m21yrr0TCPuesVEeDsgq6Yt6Lg3fLb6x1qWmAcL2GOE,2404
@@ -696,10 +696,10 @@ DIRAC/MonitoringSystem/Client/Types/RMSMonitoring.py,sha256=DzmMIY22YKazfmfv8kOG
696
696
  DIRAC/MonitoringSystem/Client/Types/ServiceMonitoring.py,sha256=IZ_SIJbv8Eoub2DbbjKjSqlj0xNMU6wU9tX4EtOFU40,1491
697
697
  DIRAC/MonitoringSystem/Client/Types/WMSHistory.py,sha256=A6MTur_WQCGptfuDW8k2Sl-Utt8jUyUa4HzlS1lwsRA,1358
698
698
  DIRAC/MonitoringSystem/Client/Types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
699
- DIRAC/MonitoringSystem/DB/MonitoringDB.py,sha256=fHpaVjbP0N4UYP-ejgiyHxDhXR2_Bc4TPF_BcjH0GDI,20076
699
+ DIRAC/MonitoringSystem/DB/MonitoringDB.py,sha256=XZm32V1QShRBIq4FsONuwGHFSArXSmyc8gWmyoBgk_M,19357
700
700
  DIRAC/MonitoringSystem/DB/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
701
701
  DIRAC/MonitoringSystem/DB/test/Test_monitoringdb.py,sha256=Jf4NZgb9V6U4DYk4SCLVoTqxJVBYsj49rIaYB7e6qxw,2788
702
- DIRAC/MonitoringSystem/Service/MonitoringHandler.py,sha256=LoEk57slU9qJnCKkIpKFDT2RMRmX3Hhv4UnhyvpvdrM,13406
702
+ DIRAC/MonitoringSystem/Service/MonitoringHandler.py,sha256=JGN1MUsxP8swTuIa4qdPvo-O4UoA6TkxjfDZ1sC6L2w,12332
703
703
  DIRAC/MonitoringSystem/Service/TornadoMonitoringHandler.py,sha256=06gIHrrLJTgI-vnCHAGsDDjZrRwJaMsa8ESsdWy0Ir8,1550
704
704
  DIRAC/MonitoringSystem/Service/WebAppHandler.py,sha256=5RJmLfcSML394USyC0pqn3VdJEVJXKrZ7-Kx2OzeuxI,20542
705
705
  DIRAC/MonitoringSystem/Service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -904,7 +904,7 @@ DIRAC/Resources/Computing/AREXComputingElement.py,sha256=0QmYepoOfcYT6MBdHeG6dY_
904
904
  DIRAC/Resources/Computing/CloudComputingElement.py,sha256=N8wfRL6ppozkKFzbCuWuVvudNfAqTox1zNeDZY6lED0,21102
905
905
  DIRAC/Resources/Computing/ComputingElement.py,sha256=lAvlx7AOtkftku6sekIaEK4Wp_GlaDHnYeNfxW54zu4,19424
906
906
  DIRAC/Resources/Computing/ComputingElementFactory.py,sha256=gaYP8TvvP7OJsL2o6IMTIYYoBn6flt3Ue7f1NX4HmNY,2541
907
- DIRAC/Resources/Computing/HTCondorCEComputingElement.py,sha256=lMo7kOrYdg-U6LojD5DqkpW8U3Lb921xSRSAj1p2uew,25553
907
+ DIRAC/Resources/Computing/HTCondorCEComputingElement.py,sha256=zEekKBBcbAsUgZVU6H7zOKFaV3AzS549uHnEAK61nMo,26146
908
908
  DIRAC/Resources/Computing/InProcessComputingElement.py,sha256=6PTGQrAB7ROuTrO1Eq86fmDduf6IrkVInjSMzXb00eM,4620
909
909
  DIRAC/Resources/Computing/LocalComputingElement.py,sha256=om4cH89cZANy6VF2sYeLhmESs5XVPCpEOLFckusdAxw,12533
910
910
  DIRAC/Resources/Computing/PoolComputingElement.py,sha256=QzU7R_1lmZ67lhiQseNvW493fgBL8tOkqBZxZMrFsBE,10404
@@ -913,7 +913,7 @@ DIRAC/Resources/Computing/SSHComputingElement.py,sha256=Sy-Ab2Q_honFRt4Oj_Veh7uq
913
913
  DIRAC/Resources/Computing/SingularityComputingElement.py,sha256=6bWkSEmPMV85JeKiqn1Q151QaG5rcW61-mnIU_MUj2A,17880
914
914
  DIRAC/Resources/Computing/__init__.py,sha256=S0glZLs-Q2srpRLELQPDHSB9CVAcBXrPnQsFi-ZsokM,43
915
915
  DIRAC/Resources/Computing/cloudinit.template,sha256=gF4yOILXXWjlrs3bcazLA2Wf2n7QYkebMcaD_kNWK5I,4025
916
- DIRAC/Resources/Computing/BatchSystems/Condor.py,sha256=tAqIVViV22q6uUFnu7rxBC3qAxDf6BLT0_UFXVPs5HA,12972
916
+ DIRAC/Resources/Computing/BatchSystems/Condor.py,sha256=O9KctL-Pg7rZfT7-RPBtWcw1N8XGuGQOMtBxFeK0-f8,13337
917
917
  DIRAC/Resources/Computing/BatchSystems/GE.py,sha256=XkumJZPMgqxJr3qJc5EmLXOzrfKZSKuUPKZjPumTC1U,9170
918
918
  DIRAC/Resources/Computing/BatchSystems/Host.py,sha256=NmCIn6e5ZUiXiX1qIke-3G5dEEDXUznASvfIoP8Vx5U,9638
919
919
  DIRAC/Resources/Computing/BatchSystems/LSF.py,sha256=ujM4Fd22WdwM3VZgxtxXRhdV-izDkmSDbaS8Cd7YUEs,7218
@@ -942,7 +942,7 @@ DIRAC/Resources/Computing/BatchSystems/test/__init__.py,sha256=47DEQpj8HBSa-_TIm
942
942
  DIRAC/Resources/Computing/CloudProviders/OpenNebula.py,sha256=TJWtje-l5OqaXxIAeV7xr8L-WjR-eZPTAI7rVfrh09c,9928
943
943
  DIRAC/Resources/Computing/test/Test_AREXComputingElement.py,sha256=00DdLY_PLsGVogdHejIsJTRg73nwSOOS-F11gVDlBmM,2518
944
944
  DIRAC/Resources/Computing/test/Test_ComputingElement.py,sha256=lIVHO8ottEU1z0B4X_-V2Uqf6C9bJoDa-Tgh6-DVwYM,1541
945
- DIRAC/Resources/Computing/test/Test_HTCondorCEComputingElement.py,sha256=As_d4SHKx2vuUY7JM_Uujq_vPzk1s7V6Myun382qGGo,7560
945
+ DIRAC/Resources/Computing/test/Test_HTCondorCEComputingElement.py,sha256=7x8SqbOHfnn-c-fzyc2FK00_cJ25A3ed-oR9rfkwKXw,8193
946
946
  DIRAC/Resources/Computing/test/Test_InProcessComputingElement.py,sha256=j_ESF_f7-Aov48rtAZUjZclQvXSlKMs3SIpPu4uTJZ0,2067
947
947
  DIRAC/Resources/Computing/test/Test_PoolComputingElement.py,sha256=KPzPRp4Pz0EpO-bDQxTcfSpvgPikvqAYv98SRStiAhQ,11843
948
948
  DIRAC/Resources/Computing/test/Test_SSHComputingElement.py,sha256=ahYUZ9hySaEXik3nvUMWJ7eP87xj6u-LMDpX7A1OQd4,2425
@@ -1003,7 +1003,7 @@ DIRAC/Resources/Storage/GFAL2_StorageBase.py,sha256=_DUQjclrxzeICOQpvNNXCLGAJ8L9
1003
1003
  DIRAC/Resources/Storage/GFAL2_XROOTStorage.py,sha256=MlZMV9Eh3sEEOKDkiK9D2VGDHWlpauX5c-A1KnvJLLw,4497
1004
1004
  DIRAC/Resources/Storage/RFIOStorage.py,sha256=KmMEY-17_FMlq2rCY03X4EJAce41Cg5Mg-tbCUwz5LI,42741
1005
1005
  DIRAC/Resources/Storage/S3Storage.py,sha256=5kzgfeH81724odsDoqjDggP9a4yiAD0wJt3eJsgAeT8,28080
1006
- DIRAC/Resources/Storage/StorageBase.py,sha256=N_UquiN8w3R26BoioBMK3NCoNYHCpn7hEgFgcmcOmdA,16847
1006
+ DIRAC/Resources/Storage/StorageBase.py,sha256=ElZS4DlWWwM_WWLV61uliMy1EWrL1lpLWK18MGeWrFM,16905
1007
1007
  DIRAC/Resources/Storage/StorageElement.py,sha256=Tt8RoQjAiA0bH4qx7uGZk_dYYUnf5d4D1muFa8Gxq6k,62620
1008
1008
  DIRAC/Resources/Storage/StorageFactory.py,sha256=UlKzMOvhR8SSBpZ4QPp5taeOU_VZTlhv08ggL606Dxo,19435
1009
1009
  DIRAC/Resources/Storage/Utilities.py,sha256=v6PA-Y3ApNObLnsC-POM3f4UJMWcYNWTcqnQ5-T47J4,1048
@@ -1143,7 +1143,7 @@ DIRAC/WorkloadManagementSystem/Agent/test/Test_Agent_PushJobAgent.py,sha256=YrQE
1143
1143
  DIRAC/WorkloadManagementSystem/Agent/test/Test_Agent_SiteDirector.py,sha256=ynC8NJobwWCRzKAKnQi2qhnPzwQypZRzBrwKGtUmmhs,11440
1144
1144
  DIRAC/WorkloadManagementSystem/Agent/test/Test_Agent_StalledJobAgent.py,sha256=uLgHSA3ZITeNxlPdgAYHjgUsL3Xa74g8Oy-0JTbX3K4,1938
1145
1145
  DIRAC/WorkloadManagementSystem/Client/CPUNormalization.py,sha256=txBgRfnTAY5KykpKRrK1jp5x4FInWjv-Rja4R7Dqdis,5423
1146
- DIRAC/WorkloadManagementSystem/Client/DownloadInputData.py,sha256=EJTMf31NyLmQTPWdgMBOxDnZz1r0Aeu7HHyCpgP54Wc,16233
1146
+ DIRAC/WorkloadManagementSystem/Client/DownloadInputData.py,sha256=JfidM3U2b0z64hk6j0VpQ7fh6eSkRjm1Hw8X-DAspwI,16303
1147
1147
  DIRAC/WorkloadManagementSystem/Client/InputDataByProtocol.py,sha256=tjK6L8iNqWOBENcGJbG0yJsQYwGvFLRFcTMNnrusFAI,12837
1148
1148
  DIRAC/WorkloadManagementSystem/Client/InputDataResolution.py,sha256=z8K8VKoUH4KtlTPe0mfyVsQKH6BQh80YIUhu61Fpgeg,6162
1149
1149
  DIRAC/WorkloadManagementSystem/Client/JobManagerClient.py,sha256=ySi2lxiwuEf8gx3exIbS_HekJRvpXR7q3h2MdwsRcYA,689
@@ -1175,7 +1175,7 @@ DIRAC/WorkloadManagementSystem/Client/PilotLoggingPlugins/FileCacheLoggingPlugin
1175
1175
  DIRAC/WorkloadManagementSystem/Client/PilotLoggingPlugins/MQPilotLoggingPlugin.py,sha256=ydt0jbc2F057zEkiA6tb3oi5JN2VFuNmY43ykw8xGT4,2105
1176
1176
  DIRAC/WorkloadManagementSystem/Client/PilotLoggingPlugins/PilotLoggingPlugin.py,sha256=MaWB5FhKb4MppfHhosYaS6GJUl99vGSMyHV3VGYn3oE,1415
1177
1177
  DIRAC/WorkloadManagementSystem/Client/PilotLoggingPlugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1178
- DIRAC/WorkloadManagementSystem/Client/test/Test_Client_DownloadInputData.py,sha256=HRiavhMgYzIgkafBJXighnycIgTxs6pT_rw_YQC7b1Y,11094
1178
+ DIRAC/WorkloadManagementSystem/Client/test/Test_Client_DownloadInputData.py,sha256=QXEmRjc0Jc_omewIOxiosNES7QCD1yvntN1vIPfW3UI,12347
1179
1179
  DIRAC/WorkloadManagementSystem/Client/test/Test_Client_WorkloadManagementSystem.py,sha256=nlOplAKQQYdEn89jRbWAChXjaM5-aWt-wY4GxbQXD-c,2291
1180
1180
  DIRAC/WorkloadManagementSystem/Client/test/Test_JobReport.py,sha256=QYElAZiyPuMKYSGBRJO0-1K7-0HhEJjSohqC96lWzDs,852
1181
1181
  DIRAC/WorkloadManagementSystem/Client/test/Test_TornadoPilotLoggingClient.py,sha256=GRY5TA34FwLNmvVix5U2nT-5Jw1Cs8K5MJtzQ_ZlLBw,596
@@ -1206,7 +1206,7 @@ DIRAC/WorkloadManagementSystem/FutureClient/JobMonitoringClient.py,sha256=3Mjq3h
1206
1206
  DIRAC/WorkloadManagementSystem/FutureClient/JobStateUpdateClient.py,sha256=tb0oz3uewK2laHYu-xwSWGPZ0ejXhfEUf6jV3x-loCM,7033
1207
1207
  DIRAC/WorkloadManagementSystem/FutureClient/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1208
1208
  DIRAC/WorkloadManagementSystem/JobWrapper/JobExecutionCoordinator.py,sha256=Y64YnkrKklOkXnV5wKsgzBONFljVJ0ByFVUMFNkiGAU,2461
1209
- DIRAC/WorkloadManagementSystem/JobWrapper/JobWrapper.py,sha256=2nlcSeQgCbn5yGOytZZx1F07HkvEfwfaJ7w3GnduAq4,74697
1209
+ DIRAC/WorkloadManagementSystem/JobWrapper/JobWrapper.py,sha256=wAxQT5NMJdt94X_YHbSN-uCLgcJW6jC6NhbqRGo-Km8,74716
1210
1210
  DIRAC/WorkloadManagementSystem/JobWrapper/JobWrapperOfflineTemplate.py,sha256=wem5VDN9XiC7szAzdsbgHUxpIOQB2Hj36DIVMoV9px8,2490
1211
1211
  DIRAC/WorkloadManagementSystem/JobWrapper/JobWrapperTemplate.py,sha256=4QgcFPMLRaTagP9e_Vvsla8pFH8HdewklHfS-gyS4-g,3313
1212
1212
  DIRAC/WorkloadManagementSystem/JobWrapper/JobWrapperUtilities.py,sha256=5w_4PMnaHhuexChADDvt1L9Ih1PstdUuYWObnlv9Dto,10072
@@ -1228,7 +1228,7 @@ DIRAC/WorkloadManagementSystem/Service/JobPolicy.py,sha256=o88xR3roe_JRB5F53oxb1
1228
1228
  DIRAC/WorkloadManagementSystem/Service/JobStateUpdateHandler.py,sha256=p-dLY4GI4H8I5joOel5ZUf2JBz-BDoYmbn-6BJ_4FQE,9829
1229
1229
  DIRAC/WorkloadManagementSystem/Service/MatcherHandler.py,sha256=L0sdRdoSh2qa7IA5tGIPAhlJoKLB4JecCTezkaQu1tc,4554
1230
1230
  DIRAC/WorkloadManagementSystem/Service/OptimizationMindHandler.py,sha256=7FbhdRkerS2CM0HnIDSUo_OqRyEnjgol9RR7WfVK5Tc,8592
1231
- DIRAC/WorkloadManagementSystem/Service/PilotManagerHandler.py,sha256=r2H_3xp_TKXVvZM7c1JV3trTzdsJqXi5unyU6Tc8uTg,14649
1231
+ DIRAC/WorkloadManagementSystem/Service/PilotManagerHandler.py,sha256=XYbWGlL-9wmk2FMkdGKZQgqkDjHbFEARem4mRdOaSN4,14846
1232
1232
  DIRAC/WorkloadManagementSystem/Service/SandboxStoreHandler.py,sha256=yFkIxpZ7QiA2gi_0gUo8DKwPBDn-IRgThPolmUvuYvA,20287
1233
1233
  DIRAC/WorkloadManagementSystem/Service/TornadoJobManagerHandler.py,sha256=8R4St1HhJh-NFbyKWkZz4L9a7ZhwspJDymFGzS0qyV8,528
1234
1234
  DIRAC/WorkloadManagementSystem/Service/TornadoJobMonitoringHandler.py,sha256=53m2Mi_yqo-bkouXKUHidI81KwT_Rk2IuWEDw4Z7Wm0,463
@@ -1297,9 +1297,9 @@ DIRAC/tests/Workflow/Integration/exe-script.py,sha256=B_slYdTocEzqfQLRhwuPiLyYUn
1297
1297
  DIRAC/tests/Workflow/Integration/helloWorld.py,sha256=tBgEHH3ZF7ZiTS57gtmm3DW-Qxgm_57HWHpM-Y8XSws,205
1298
1298
  DIRAC/tests/Workflow/Regression/helloWorld.py,sha256=69eCgFuVSYo-mK3Dj2dw1c6g86sF5FksKCf8V2aGVoM,509
1299
1299
  DIRAC/tests/Workflow/Regression/helloWorld.xml,sha256=xwydIcFTAHIX-YPfQfyxuQ7hzvIO3IhR3UAF7ORgkGg,5310
1300
- dirac-9.0.0a59.dist-info/licenses/LICENSE,sha256=uyr4oV6jmjUeepXZPPjkJRwa5q5MrI7jqJz5sVXNblQ,32452
1301
- dirac-9.0.0a59.dist-info/METADATA,sha256=o752F9cu0B28GNuUVM5XdAEXs-5byWLGqVvDQkTmo_c,9957
1302
- dirac-9.0.0a59.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1303
- dirac-9.0.0a59.dist-info/entry_points.txt,sha256=rTtMPd5AGCg3zNaKE60PuEVFkSRzQlRG-DC_v9FCylM,16824
1304
- dirac-9.0.0a59.dist-info/top_level.txt,sha256=RISrnN9kb_mPqmVu8_o4jF-DSX8-h6AcgfkO9cgfkHA,6
1305
- dirac-9.0.0a59.dist-info/RECORD,,
1300
+ dirac-9.0.0a61.dist-info/licenses/LICENSE,sha256=uyr4oV6jmjUeepXZPPjkJRwa5q5MrI7jqJz5sVXNblQ,32452
1301
+ dirac-9.0.0a61.dist-info/METADATA,sha256=H6Ckm6zVriQeSOPVbrewj7nnpfppc3J3uNdGO819_i8,9957
1302
+ dirac-9.0.0a61.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1303
+ dirac-9.0.0a61.dist-info/entry_points.txt,sha256=rTtMPd5AGCg3zNaKE60PuEVFkSRzQlRG-DC_v9FCylM,16824
1304
+ dirac-9.0.0a61.dist-info/top_level.txt,sha256=RISrnN9kb_mPqmVu8_o4jF-DSX8-h6AcgfkO9cgfkHA,6
1305
+ dirac-9.0.0a61.dist-info/RECORD,,