DIRAC 9.0.2__py3-none-any.whl → 9.0.5__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.
- DIRAC/ConfigurationSystem/Client/Helpers/Registry.py +3 -29
- DIRAC/Core/scripts/dirac_apptainer_exec.py +8 -8
- DIRAC/FrameworkSystem/DB/ProxyDB.py +3 -3
- DIRAC/FrameworkSystem/scripts/dirac_login.py +2 -2
- DIRAC/FrameworkSystem/scripts/dirac_proxy_init.py +1 -1
- DIRAC/TransformationSystem/Utilities/ReplicationCLIParameters.py +3 -3
- DIRAC/TransformationSystem/test/Test_replicationTransformation.py +5 -6
- DIRAC/WorkloadManagementSystem/Utilities/PilotCStoJSONSynchronizer.py +4 -1
- {dirac-9.0.2.dist-info → dirac-9.0.5.dist-info}/METADATA +5 -4
- {dirac-9.0.2.dist-info → dirac-9.0.5.dist-info}/RECORD +14 -14
- {dirac-9.0.2.dist-info → dirac-9.0.5.dist-info}/WHEEL +0 -0
- {dirac-9.0.2.dist-info → dirac-9.0.5.dist-info}/entry_points.txt +0 -0
- {dirac-9.0.2.dist-info → dirac-9.0.5.dist-info}/licenses/LICENSE +0 -0
- {dirac-9.0.2.dist-info → dirac-9.0.5.dist-info}/top_level.txt +0 -0
|
@@ -3,18 +3,14 @@
|
|
|
3
3
|
import errno
|
|
4
4
|
import inspect
|
|
5
5
|
import sys
|
|
6
|
-
|
|
7
|
-
from threading import Lock
|
|
8
6
|
from collections.abc import Iterable
|
|
7
|
+
from threading import Lock
|
|
8
|
+
from typing import Optional
|
|
9
9
|
|
|
10
10
|
from cachetools import TTLCache, cached
|
|
11
11
|
from cachetools.keys import hashkey
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
from typing import Optional
|
|
15
|
-
from collections.abc import Iterable
|
|
16
|
-
|
|
17
|
-
from DIRAC import S_OK, S_ERROR
|
|
13
|
+
from DIRAC import S_ERROR, S_OK
|
|
18
14
|
from DIRAC.ConfigurationSystem.Client.Config import gConfig
|
|
19
15
|
from DIRAC.ConfigurationSystem.Client.Helpers.CSGlobals import getVO
|
|
20
16
|
|
|
@@ -488,28 +484,6 @@ def getVOMSAttributeForGroup(group):
|
|
|
488
484
|
return gConfig.getValue(f"{gBaseRegistrySection}/Groups/{group}/VOMSRole", getDefaultVOMSAttribute())
|
|
489
485
|
|
|
490
486
|
|
|
491
|
-
def getDefaultVOMSVO():
|
|
492
|
-
"""Get default VOMS VO
|
|
493
|
-
|
|
494
|
-
:return: str
|
|
495
|
-
"""
|
|
496
|
-
return gConfig.getValue(f"{gBaseRegistrySection}/DefaultVOMSVO", "") or getVO()
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
def getVOMSVOForGroup(group):
|
|
500
|
-
"""Search VOMS VO for group
|
|
501
|
-
|
|
502
|
-
:param str group: group name
|
|
503
|
-
|
|
504
|
-
:return: str
|
|
505
|
-
"""
|
|
506
|
-
vomsVO = gConfig.getValue(f"{gBaseRegistrySection}/Groups/{group}/VOMSVO", getDefaultVOMSVO())
|
|
507
|
-
if not vomsVO:
|
|
508
|
-
vo = getVOForGroup(group)
|
|
509
|
-
vomsVO = getVOOption(vo, "VOMSName", "")
|
|
510
|
-
return vomsVO
|
|
511
|
-
|
|
512
|
-
|
|
513
487
|
def getGroupsWithVOMSAttribute(vomsAttr):
|
|
514
488
|
"""Search groups with VOMS attribute
|
|
515
489
|
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env python
|
|
2
|
-
"""
|
|
3
|
-
"""
|
|
2
|
+
"""Starts a DIRAC command inside an apptainer container."""
|
|
4
3
|
|
|
5
4
|
import os
|
|
6
5
|
import sys
|
|
@@ -52,8 +51,9 @@ def main():
|
|
|
52
51
|
if switch[0].lower() == "i" or switch[0].lower() == "image":
|
|
53
52
|
user_image = switch[1]
|
|
54
53
|
|
|
55
|
-
|
|
56
|
-
|
|
54
|
+
cwd = os.path.realpath(os.getcwd())
|
|
55
|
+
dirac_env_var = os.environ.get("DIRAC", cwd)
|
|
56
|
+
diracos_env_var = os.environ.get("DIRACOS", cwd)
|
|
57
57
|
etc_dir = os.path.join(DIRAC.rootPath, "etc")
|
|
58
58
|
rc_script = os.path.join(os.path.realpath(sys.base_prefix), "diracosrc")
|
|
59
59
|
|
|
@@ -74,7 +74,7 @@ def main():
|
|
|
74
74
|
cmd.extend(["--contain"]) # use minimal /dev and empty other directories (e.g. /tmp and $HOME)
|
|
75
75
|
cmd.extend(["--ipc"]) # run container in a new IPC namespace
|
|
76
76
|
cmd.extend(["--pid"]) # run container in a new PID namespace
|
|
77
|
-
cmd.extend(["--bind",
|
|
77
|
+
cmd.extend(["--bind", cwd]) # bind current directory for dirac_container.sh
|
|
78
78
|
if proxy_location:
|
|
79
79
|
cmd.extend(["--bind", f"{proxy_location}:/etc/proxy"]) # bind proxy file
|
|
80
80
|
cmd.extend(["--bind", f"{getCAsLocation()}:/etc/grid-security/certificates"]) # X509_CERT_DIR
|
|
@@ -89,13 +89,13 @@ def main():
|
|
|
89
89
|
if safe_listdir(bind_path):
|
|
90
90
|
cmd.extend(["--bind", f"{bind_path}:{bind_path}"])
|
|
91
91
|
else:
|
|
92
|
-
gLogger.
|
|
93
|
-
cmd.extend(["--cwd",
|
|
92
|
+
gLogger.warn(f"Bind path {bind_path} does not exist, skipping")
|
|
93
|
+
cmd.extend(["--cwd", cwd]) # set working directory
|
|
94
94
|
|
|
95
95
|
rootImage = user_image or gConfig.getValue("/Resources/Computing/Singularity/ContainerRoot") or CONTAINER_DEFROOT
|
|
96
96
|
|
|
97
97
|
if os.path.isdir(rootImage) or os.path.isfile(rootImage):
|
|
98
|
-
cmd.extend([rootImage, f"{
|
|
98
|
+
cmd.extend([rootImage, f"{cwd}/dirac_container.sh"])
|
|
99
99
|
else:
|
|
100
100
|
# if we are here is because there's no image, or it is not accessible (e.g. not on CVMFS)
|
|
101
101
|
gLogger.error("Apptainer image to exec not found: ", rootImage)
|
|
@@ -601,13 +601,13 @@ class ProxyDB(DB):
|
|
|
601
601
|
:return: S_OK(dict)/S_ERROR() -- dict contain attribute and VOMS VO
|
|
602
602
|
"""
|
|
603
603
|
if requiredVOMSAttribute:
|
|
604
|
-
return S_OK({"attribute": requiredVOMSAttribute, "
|
|
604
|
+
return S_OK({"attribute": requiredVOMSAttribute, "VO": Registry.getVOForGroup(userGroup)})
|
|
605
605
|
|
|
606
606
|
csVOMSMapping = Registry.getVOMSAttributeForGroup(userGroup)
|
|
607
607
|
if not csVOMSMapping:
|
|
608
608
|
return S_ERROR(f"No mapping defined for group {userGroup} in the CS")
|
|
609
609
|
|
|
610
|
-
return S_OK({"attribute": csVOMSMapping, "
|
|
610
|
+
return S_OK({"attribute": csVOMSMapping, "VO": Registry.getVOForGroup(userGroup)})
|
|
611
611
|
|
|
612
612
|
def getVOMSProxy(self, userDN, userGroup, requiredLifeTime=None, requestedVOMSAttr=None):
|
|
613
613
|
"""Get proxy string from the Proxy Repository for use with userDN
|
|
@@ -624,7 +624,7 @@ class ProxyDB(DB):
|
|
|
624
624
|
if not retVal["OK"]:
|
|
625
625
|
return retVal
|
|
626
626
|
vomsAttr = retVal["Value"]["attribute"]
|
|
627
|
-
vomsVO = retVal["Value"]["
|
|
627
|
+
vomsVO = retVal["Value"]["VO"]
|
|
628
628
|
|
|
629
629
|
# Look in the cache
|
|
630
630
|
retVal = self.__getPemAndTimeLeft(userDN, userGroup, vomsAttr)
|
|
@@ -38,8 +38,8 @@ Script.disableCS()
|
|
|
38
38
|
from DIRAC.ConfigurationSystem.Client.Helpers.Registry import (
|
|
39
39
|
findDefaultGroupForDN,
|
|
40
40
|
getGroupOption,
|
|
41
|
+
getVOForGroup,
|
|
41
42
|
getVOMSAttributeForGroup,
|
|
42
|
-
getVOMSVOForGroup,
|
|
43
43
|
)
|
|
44
44
|
from DIRAC.FrameworkSystem.Client.ProxyManagerClient import gProxyManager
|
|
45
45
|
from DIRAC.FrameworkSystem.private.authorization.utils.Tokens import (
|
|
@@ -285,7 +285,7 @@ class Params:
|
|
|
285
285
|
if not (vomsAttr := getVOMSAttributeForGroup(self.group)):
|
|
286
286
|
print(HTML(f"<yellow>No VOMS attribute foud for {self.group}</yellow>"))
|
|
287
287
|
else:
|
|
288
|
-
vo =
|
|
288
|
+
vo = getVOForGroup(self.group)
|
|
289
289
|
if not (result := VOMS().setVOMSAttributes(self.outputFile, attribute=vomsAttr, vo=vo))["OK"]:
|
|
290
290
|
return S_ERROR(f"Failed adding VOMS attribute: {result['Message']}")
|
|
291
291
|
chain = result["Value"]
|
|
@@ -96,7 +96,7 @@ class ProxyInit:
|
|
|
96
96
|
)
|
|
97
97
|
|
|
98
98
|
resultVomsAttributes = VOMS.VOMS().setVOMSAttributes(
|
|
99
|
-
self.__proxyGenerated, attribute=vomsAttr, vo=Registry.
|
|
99
|
+
self.__proxyGenerated, attribute=vomsAttr, vo=Registry.getVOForGroup(self.__piParams.diracGroup)
|
|
100
100
|
)
|
|
101
101
|
if not resultVomsAttributes["OK"]:
|
|
102
102
|
return S_ERROR(
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Command Line Parameters for creating the Replication transformations Script
|
|
3
3
|
"""
|
|
4
|
-
from DIRAC import
|
|
4
|
+
from DIRAC import S_ERROR, S_OK, gLogger
|
|
5
|
+
from DIRAC.ConfigurationSystem.Client.Helpers.Registry import getVOForGroup
|
|
5
6
|
from DIRAC.Core.Security.Properties import SecurityProperty
|
|
6
7
|
from DIRAC.Core.Security.ProxyInfo import getProxyInfo
|
|
7
|
-
from DIRAC.ConfigurationSystem.Client.Helpers.Registry import getVOMSVOForGroup
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
class Params:
|
|
@@ -144,7 +144,7 @@ class Params:
|
|
|
144
144
|
return False
|
|
145
145
|
proxyValues = proxyInfo.get("Value", {})
|
|
146
146
|
group = proxyValues.get("group", "")
|
|
147
|
-
vomsvo =
|
|
147
|
+
vomsvo = getVOForGroup(group)
|
|
148
148
|
if not vomsvo:
|
|
149
149
|
self.errorMessages.append("ERROR: ProxyGroup not associated to VOMS VO, get a different proxy")
|
|
150
150
|
return False
|
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
"""Test the dirac-transformation-replication script and helper"""
|
|
2
2
|
import unittest
|
|
3
|
+
from unittest.mock import MagicMock as Mock
|
|
4
|
+
from unittest.mock import patch
|
|
3
5
|
|
|
4
|
-
from
|
|
5
|
-
|
|
6
|
-
from DIRAC import S_OK, S_ERROR
|
|
7
|
-
|
|
8
|
-
from DIRAC.TransformationSystem.Utilities.ReplicationTransformation import createDataTransformation
|
|
6
|
+
from DIRAC import S_ERROR, S_OK
|
|
9
7
|
from DIRAC.TransformationSystem.Utilities.ReplicationCLIParameters import Params
|
|
8
|
+
from DIRAC.TransformationSystem.Utilities.ReplicationTransformation import createDataTransformation
|
|
10
9
|
|
|
11
|
-
GET_VOMS = "DIRAC.TransformationSystem.Utilities.ReplicationCLIParameters.
|
|
10
|
+
GET_VOMS = "DIRAC.TransformationSystem.Utilities.ReplicationCLIParameters.getVOForGroup"
|
|
12
11
|
GET_PROXY = "DIRAC.TransformationSystem.Utilities.ReplicationCLIParameters.getProxyInfo"
|
|
13
12
|
|
|
14
13
|
|
|
@@ -11,7 +11,6 @@ import os
|
|
|
11
11
|
import shutil
|
|
12
12
|
import tarfile
|
|
13
13
|
from typing import Any
|
|
14
|
-
|
|
15
14
|
from git import Repo
|
|
16
15
|
|
|
17
16
|
from DIRAC import S_OK, gConfig, gLogger
|
|
@@ -217,6 +216,10 @@ class PilotCStoJSONSynchronizer:
|
|
|
217
216
|
|
|
218
217
|
pilotDict["ConfigurationServers"] = configurationServers
|
|
219
218
|
|
|
219
|
+
preferredURLPatterns = gConfigurationData.extractOptionFromCFG("/DIRAC/PreferredURLPatterns")
|
|
220
|
+
if preferredURLPatterns:
|
|
221
|
+
pilotDict["PreferredURLPatterns"] = preferredURLPatterns
|
|
222
|
+
|
|
220
223
|
self.log.debug("Got pilotDict", str(pilotDict))
|
|
221
224
|
|
|
222
225
|
return S_OK(pilotDict)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: DIRAC
|
|
3
|
-
Version: 9.0.
|
|
3
|
+
Version: 9.0.5
|
|
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
|
|
@@ -19,9 +19,10 @@ Requires-Dist: cachetools
|
|
|
19
19
|
Requires-Dist: certifi
|
|
20
20
|
Requires-Dist: cwltool
|
|
21
21
|
Requires-Dist: diraccfg
|
|
22
|
-
Requires-Dist: DIRACCommon==v9.0.
|
|
23
|
-
Requires-Dist: diracx-client>=v0.0.
|
|
24
|
-
Requires-Dist: diracx-core>=v0.0.
|
|
22
|
+
Requires-Dist: DIRACCommon==v9.0.5
|
|
23
|
+
Requires-Dist: diracx-client>=v0.0.1
|
|
24
|
+
Requires-Dist: diracx-core>=v0.0.1
|
|
25
|
+
Requires-Dist: diracx-cli>=v0.0.1
|
|
25
26
|
Requires-Dist: db12
|
|
26
27
|
Requires-Dist: fts3
|
|
27
28
|
Requires-Dist: gfal2-python
|
|
@@ -66,7 +66,7 @@ DIRAC/ConfigurationSystem/Client/__init__.py,sha256=Jkxofl9cI04MqJcu_ZP8Wdk3WXOm
|
|
|
66
66
|
DIRAC/ConfigurationSystem/Client/Helpers/CSGlobals.py,sha256=taQyqusXtK3zAtoQY9tpCyHAr9jU7U7cjRDvW8YmUwk,911
|
|
67
67
|
DIRAC/ConfigurationSystem/Client/Helpers/Operations.py,sha256=jrpeauEwV6_xXQwVEbs6DDboB8oUmzkZkB_Xg8ZgdBQ,5991
|
|
68
68
|
DIRAC/ConfigurationSystem/Client/Helpers/Path.py,sha256=ghRMD2qNaKejwg4RZ3m4LzfCG5bg1afvTnwJQydl94w,930
|
|
69
|
-
DIRAC/ConfigurationSystem/Client/Helpers/Registry.py,sha256=
|
|
69
|
+
DIRAC/ConfigurationSystem/Client/Helpers/Registry.py,sha256=qHxZ1MXg29tOTS5KxId3jVJHRpHc35cttlIWsrSwiuk,20229
|
|
70
70
|
DIRAC/ConfigurationSystem/Client/Helpers/Resources.py,sha256=g6ZRdAydAnyKHjL9Gh6VS-jP5zb64q7uMOohtn8rin8,15604
|
|
71
71
|
DIRAC/ConfigurationSystem/Client/Helpers/ResourcesDefaults.py,sha256=m6s-ZvjtYcLGsuu6mkCpIzxA8rEUYnwOOw1HvjecuJQ,3314
|
|
72
72
|
DIRAC/ConfigurationSystem/Client/Helpers/__init__.py,sha256=syOASwgkZHn6b6ybYYu15wO8mrZXj7T-gIHk3EDlpjc,206
|
|
@@ -322,7 +322,7 @@ DIRAC/Core/Workflow/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
322
322
|
DIRAC/Core/Workflow/test/step_g.py,sha256=hlncZ_tbb74wz0mRxyHTl0NnjRut2ysWLgUfiTvi9yo,21830
|
|
323
323
|
DIRAC/Core/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
324
324
|
DIRAC/Core/scripts/dirac_agent.py,sha256=cjR5wuh4j5D5nTvu9ZfPbjdbZiEnRG34GJj7iSh47qk,1670
|
|
325
|
-
DIRAC/Core/scripts/dirac_apptainer_exec.py,sha256=
|
|
325
|
+
DIRAC/Core/scripts/dirac_apptainer_exec.py,sha256=fIg4DDJJ9TwbsCNbQpkkUOIvpetGnqlKWF75Gi3RhQ8,4651
|
|
326
326
|
DIRAC/Core/scripts/dirac_cert_convert.py,sha256=3ThPmb1Tg-UgeH-3ZV0ilkZ8-H4RsK8SOszLuuYG-vs,2498
|
|
327
327
|
DIRAC/Core/scripts/dirac_configure.py,sha256=c3ZfQUe_JUJASi3iuvl4qD83kyfWvS_QixISyG833sg,29494
|
|
328
328
|
DIRAC/Core/scripts/dirac_executor.py,sha256=ZZnr8NjjBmmKmQhUnstRklw9HTsP75XRXnkBawDWdnE,1722
|
|
@@ -509,7 +509,7 @@ DIRAC/FrameworkSystem/DB/AuthDB.py,sha256=QLotpINMq45FNoFO2AV3OH5Ij5i__HHk-p-m-b
|
|
|
509
509
|
DIRAC/FrameworkSystem/DB/AuthDB.sql,sha256=tcAnRmBBEDxljAXILp8tlLzuEb7vOoN190KQK7NSbQQ,95
|
|
510
510
|
DIRAC/FrameworkSystem/DB/InstalledComponentsDB.py,sha256=rVarVs61K1kPHZIf1U_kfia-5pxR5uSXsuDutr8EcFY,43156
|
|
511
511
|
DIRAC/FrameworkSystem/DB/InstalledComponentsDB.sql,sha256=-LFjjn1gRQo7zDOclKmFwmbZi_lXXnx_B17cZPLBUak,113
|
|
512
|
-
DIRAC/FrameworkSystem/DB/ProxyDB.py,sha256=
|
|
512
|
+
DIRAC/FrameworkSystem/DB/ProxyDB.py,sha256=5gnttlg9pJpyq9nYZDqEe_TihO6Ug3BImaHGcz0kjnQ,39706
|
|
513
513
|
DIRAC/FrameworkSystem/DB/ProxyDB.sql,sha256=QwWe_mRX_NbZQVBo3TzA60L3FemI-oLY8G7_4uRFPzU,96
|
|
514
514
|
DIRAC/FrameworkSystem/DB/TokenDB.py,sha256=FjHsPuTYt2KaXs0fST_tOAZyXY1R6417BB-lblxduZ4,8652
|
|
515
515
|
DIRAC/FrameworkSystem/DB/TokenDB.sql,sha256=D-D78eFUkCRb4YLNZqdCfmyaEIJFupgMhIwgSs91yE4,96
|
|
@@ -580,12 +580,12 @@ DIRAC/FrameworkSystem/scripts/dirac_admin_update_pilot.py,sha256=sxrioz8QtnZfWoP
|
|
|
580
580
|
DIRAC/FrameworkSystem/scripts/dirac_admin_users_with_proxy.py,sha256=qPvgY1cp8_QOOEuOyOQA6MIjvweheGTVCaS_OK7Yfa0,2549
|
|
581
581
|
DIRAC/FrameworkSystem/scripts/dirac_diracx_whoami.py,sha256=Sj7ovgENBe5naW0U9VPgumEO6f1-kLElfhZnAvCX6fg,653
|
|
582
582
|
DIRAC/FrameworkSystem/scripts/dirac_install_component.py,sha256=cjKWUspscXdKHA-GjwBv9jntEyp-gleFoYg456Y0XWQ,5159
|
|
583
|
-
DIRAC/FrameworkSystem/scripts/dirac_login.py,sha256=
|
|
583
|
+
DIRAC/FrameworkSystem/scripts/dirac_login.py,sha256=AAk4ulVmbdcCw8XGLKnlupDNa8m80ouSuGiyohn1W4A,16111
|
|
584
584
|
DIRAC/FrameworkSystem/scripts/dirac_logout.py,sha256=9JqINw-Fqoxk1aH8LnRP_gF9DNADhv3zFar51DBBJ3w,3668
|
|
585
585
|
DIRAC/FrameworkSystem/scripts/dirac_proxy_destroy.py,sha256=Db6Su17yuie2KX0vcXiqwa0BTmmU2x0_TB3vROiem-g,5009
|
|
586
586
|
DIRAC/FrameworkSystem/scripts/dirac_proxy_get_uploaded_info.py,sha256=nCSGTZwOeg8kHF_Kp5OPs8Z6W1F3H7lw7aZcjVztr5E,3537
|
|
587
587
|
DIRAC/FrameworkSystem/scripts/dirac_proxy_info.py,sha256=X7zQawo7ZCD4bpoUE1WR2vWExsH7V7OwcWINKSNmssM,6182
|
|
588
|
-
DIRAC/FrameworkSystem/scripts/dirac_proxy_init.py,sha256=
|
|
588
|
+
DIRAC/FrameworkSystem/scripts/dirac_proxy_init.py,sha256=effVCmzUUDoWOSak-e1dyb2haYPeWsMU_7ali51xgHE,10166
|
|
589
589
|
DIRAC/FrameworkSystem/scripts/dirac_restart_component.py,sha256=U1FPMHYhJP0xQzfN88SshzXamB-lqanAhOzWQ7JSOuk,1275
|
|
590
590
|
DIRAC/FrameworkSystem/scripts/dirac_start_component.py,sha256=nlCSTjG_w57t4W2vlV_22_stBa2HZfIXTOicSzfYXg0,1289
|
|
591
591
|
DIRAC/FrameworkSystem/scripts/dirac_status_component.py,sha256=KbNYSyHLZueVNLBbFHNnl7MF5gWR2JTie13GH6tlIfQ,1658
|
|
@@ -1089,7 +1089,7 @@ DIRAC/TransformationSystem/Service/TornadoTransformationManagerHandler.py,sha256
|
|
|
1089
1089
|
DIRAC/TransformationSystem/Service/TransformationManagerHandler.py,sha256=02CxUBq9WmCHt2kAeSDkyw1Ul5QfuOBuf-VJwPnYEpE,20438
|
|
1090
1090
|
DIRAC/TransformationSystem/Service/__init__.py,sha256=u3bZshx_dmLaeAOV5QX5dohrupszf9SR5rHkVwk5XJw,51
|
|
1091
1091
|
DIRAC/TransformationSystem/Utilities/JobInfo.py,sha256=sUJNj-_5iA59eRFSSWQCCLo8HQIoh7m1xmxXrpzb3MU,10706
|
|
1092
|
-
DIRAC/TransformationSystem/Utilities/ReplicationCLIParameters.py,sha256=
|
|
1092
|
+
DIRAC/TransformationSystem/Utilities/ReplicationCLIParameters.py,sha256=RK9FTLzHicDnT60J-W6jLtxZaMh4OIxq5MltNjETv7Y,6379
|
|
1093
1093
|
DIRAC/TransformationSystem/Utilities/ReplicationTransformation.py,sha256=RJIobUwK_g_gG5GjApeJ6zi2bff03fW7-fHVxqK3-ms,5064
|
|
1094
1094
|
DIRAC/TransformationSystem/Utilities/ScriptUtilities.py,sha256=5HMW2uVoFVQyJGwxec-_hldEzucRHSzMOwSvdUUuHrM,2523
|
|
1095
1095
|
DIRAC/TransformationSystem/Utilities/TransformationInfo.py,sha256=Y1k5JjkODJUZeLQuWaBqJUGK1bPm9flWQD6cn9F-Mf4,8629
|
|
@@ -1107,7 +1107,7 @@ DIRAC/TransformationSystem/scripts/dirac_transformation_verify_outputdata.py,sha
|
|
|
1107
1107
|
DIRAC/TransformationSystem/test/Test_DRA.py,sha256=K7kqBljTtpFoq8Kr55EqI33KE_U98ONs34ggF-5y8wU,26861
|
|
1108
1108
|
DIRAC/TransformationSystem/test/Test_JobInfo.py,sha256=OW12FLuD4Njz2gTTxeu-BHu_PHthVDQdoPY6_PWxHoM,25705
|
|
1109
1109
|
DIRAC/TransformationSystem/test/Test_TransformationInfo.py,sha256=gSNiXhMzbvO9VmlEtcRQmbtgx3fTNS50zGgNq6CRsKE,15547
|
|
1110
|
-
DIRAC/TransformationSystem/test/Test_replicationTransformation.py,sha256=
|
|
1110
|
+
DIRAC/TransformationSystem/test/Test_replicationTransformation.py,sha256=5SSUuYY0KtsbraWFrbM8uz3lGNnzSCfLZppqyNUwsLA,10855
|
|
1111
1111
|
DIRAC/TransformationSystem/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1112
1112
|
DIRAC/Workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1113
1113
|
DIRAC/Workflow/Modules/FailoverRequest.py,sha256=QFv_YXtItXMzfGGKAIk_UJMSK1Maze3xEB4bQFLGq1U,3941
|
|
@@ -1241,7 +1241,7 @@ DIRAC/WorkloadManagementSystem/Utilities/JobModel.py,sha256=jN9sFbzMZo9tab6Kp7Oe
|
|
|
1241
1241
|
DIRAC/WorkloadManagementSystem/Utilities/JobParameters.py,sha256=JW3AAEtBJn1gIO_rm2Ft5qqjfLteIo3HpQtGNZBfhxE,8365
|
|
1242
1242
|
DIRAC/WorkloadManagementSystem/Utilities/JobStatusUtility.py,sha256=WtGJzC7fHvydANh8JH6e1Kk_jebrCMPr2c5cw3ufjm8,7826
|
|
1243
1243
|
DIRAC/WorkloadManagementSystem/Utilities/ParametricJob.py,sha256=FNUsGhvsFVrtmA7r8G-sd4QTMeBkqG1sdtwiBUKQyd0,605
|
|
1244
|
-
DIRAC/WorkloadManagementSystem/Utilities/PilotCStoJSONSynchronizer.py,sha256=
|
|
1244
|
+
DIRAC/WorkloadManagementSystem/Utilities/PilotCStoJSONSynchronizer.py,sha256=Ezpfd90dV_j6fOn25v5gr-wNWh1nMpCOQZfPmGDHJD4,12448
|
|
1245
1245
|
DIRAC/WorkloadManagementSystem/Utilities/PilotWrapper.py,sha256=VcvQTpeyTbVYqSsPQDyAt37N2CaEAnIuvbR6yk4kYk8,15465
|
|
1246
1246
|
DIRAC/WorkloadManagementSystem/Utilities/QueueUtilities.py,sha256=J5-n_lvWbW_TRjrlqp8hx1SHEaXDW2Dxp3R1hBBrWnE,12082
|
|
1247
1247
|
DIRAC/WorkloadManagementSystem/Utilities/RemoteRunner.py,sha256=7FcEtlYSJMzdbLIFBUKD-j_wqRHya-ISqk8w-JRy3kw,12159
|
|
@@ -1295,9 +1295,9 @@ DIRAC/tests/Workflow/Integration/exe-script.py,sha256=B_slYdTocEzqfQLRhwuPiLyYUn
|
|
|
1295
1295
|
DIRAC/tests/Workflow/Integration/helloWorld.py,sha256=tBgEHH3ZF7ZiTS57gtmm3DW-Qxgm_57HWHpM-Y8XSws,205
|
|
1296
1296
|
DIRAC/tests/Workflow/Regression/helloWorld.py,sha256=69eCgFuVSYo-mK3Dj2dw1c6g86sF5FksKCf8V2aGVoM,509
|
|
1297
1297
|
DIRAC/tests/Workflow/Regression/helloWorld.xml,sha256=xwydIcFTAHIX-YPfQfyxuQ7hzvIO3IhR3UAF7ORgkGg,5310
|
|
1298
|
-
dirac-9.0.
|
|
1299
|
-
dirac-9.0.
|
|
1300
|
-
dirac-9.0.
|
|
1301
|
-
dirac-9.0.
|
|
1302
|
-
dirac-9.0.
|
|
1303
|
-
dirac-9.0.
|
|
1298
|
+
dirac-9.0.5.dist-info/licenses/LICENSE,sha256=uyr4oV6jmjUeepXZPPjkJRwa5q5MrI7jqJz5sVXNblQ,32452
|
|
1299
|
+
dirac-9.0.5.dist-info/METADATA,sha256=WgBoEsoG3B1PTa2YPy4NsEzaG4q01d5BOVhMYEIZbTs,10016
|
|
1300
|
+
dirac-9.0.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
1301
|
+
dirac-9.0.5.dist-info/entry_points.txt,sha256=hupzIL8aVmjK3nn7RLKdhcaiPmLOiD3Kulh3CSDHKmw,16492
|
|
1302
|
+
dirac-9.0.5.dist-info/top_level.txt,sha256=RISrnN9kb_mPqmVu8_o4jF-DSX8-h6AcgfkO9cgfkHA,6
|
|
1303
|
+
dirac-9.0.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|