DIRAC 9.0.11__py3-none-any.whl → 9.0.12__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.
@@ -1,6 +1,6 @@
1
- """ Accounting class to stores network metrics gathered by perfSONARs.
1
+ """Accounting class to stores network metrics gathered by perfSONARs.
2
2
 
3
- Filled by "Accounting/Network" agent
3
+ Filled by "Accounting/Network" agent
4
4
  """
5
5
 
6
6
  from DIRAC.AccountingSystem.Client.Types.BaseAccountingType import BaseAccountingType
@@ -16,12 +16,12 @@ class Network(BaseAccountingType):
16
16
 
17
17
  # IPv6 address has up to 45 chars
18
18
  self.definitionKeyFields = [
19
- ("SourceIP", "VARCHAR(50)"),
20
- ("DestinationIP", "VARCHAR(50)"),
21
- ("SourceHostName", "VARCHAR(50)"),
22
- ("DestinationHostName", "VARCHAR(50)"),
23
- ("Source", "VARCHAR(50)"),
24
- ("Destination", "VARCHAR(50)"),
19
+ ("SourceIP", "VARCHAR(64)"),
20
+ ("DestinationIP", "VARCHAR(64)"),
21
+ ("SourceHostName", "VARCHAR(255)"),
22
+ ("DestinationHostName", "VARCHAR(255)"),
23
+ ("Source", "VARCHAR(255)"),
24
+ ("Destination", "VARCHAR(255)"),
25
25
  ]
26
26
 
27
27
  self.definitionAccountingFields = [
@@ -1,6 +1,6 @@
1
- """ Accounting Type for Pilot Submission
1
+ """Accounting Type for Pilot Submission
2
2
 
3
- Filled by the "WorkloadManagement/SiteDirector" agent(s)
3
+ Filled by the "WorkloadManagement/SiteDirector" agent(s)
4
4
  """
5
5
 
6
6
  from DIRAC.AccountingSystem.Client.Types.BaseAccountingType import BaseAccountingType
@@ -13,7 +13,7 @@ class PilotSubmission(BaseAccountingType):
13
13
  super().__init__()
14
14
 
15
15
  self.definitionKeyFields = [
16
- ("HostName", "VARCHAR(100)"),
16
+ ("HostName", "VARCHAR(255)"),
17
17
  ("SiteDirector", "VARCHAR(100)"),
18
18
  ("Site", "VARCHAR(100)"),
19
19
  ("CE", "VARCHAR(100)"),
@@ -456,13 +456,23 @@ class CSAPI:
456
456
  gLogger.error("User is not registered: ", repr(username))
457
457
  return S_OK(False)
458
458
  for prop in properties:
459
- if prop == "Groups":
459
+ if prop in ["Groups", "AffiliationEnds"]:
460
460
  continue
461
461
  prevVal = self.__csMod.getValue(f"{self.__baseSecurity}/Users/{username}/{prop}")
462
462
  if not prevVal or prevVal != properties[prop]:
463
463
  gLogger.info(f"Setting {prop} property for user {username} to {properties[prop]}")
464
464
  self.__csMod.setOptionValue(f"{self.__baseSecurity}/Users/{username}/{prop}", properties[prop])
465
465
  modifiedUser = True
466
+ if properties.get("AffiliationEnds", None):
467
+ user_affiliationends_section = f"{self.__baseSecurity}/Users/{username}/AffiliationEnds"
468
+ # add the section for AffiliationEnds
469
+ res = gConfig.getSections(user_affiliationends_section)
470
+ if not res["OK"]:
471
+ self.__csMod.createSection(user_affiliationends_section)
472
+ # now set value VO = end date
473
+ for vo, end_date in properties["AffiliationEnds"].items():
474
+ self.__csMod.setOptionValue(f"{user_affiliationends_section}/{vo}", end_date)
475
+ modifiedUser = True
466
476
  if "Groups" in properties:
467
477
  result = self.listGroups()
468
478
  if not result["OK"]:
@@ -1,6 +1,7 @@
1
1
  """
2
2
  Classes and functions for easier management of the InstalledComponents database
3
3
  """
4
+
4
5
  import re
5
6
  import datetime
6
7
 
@@ -90,7 +91,7 @@ class Host(componentsBase):
90
91
  __table_args__ = {"mysql_engine": "InnoDB", "mysql_charset": "utf8mb4"}
91
92
 
92
93
  hostID = Column("HostID", Integer, primary_key=True)
93
- hostName = Column("HostName", String(64), nullable=False)
94
+ hostName = Column("HostName", String(255), nullable=False)
94
95
  cpu = Column("CPU", String(64), nullable=False)
95
96
  installationList = relationship("InstalledComponent", backref="installationHost")
96
97
 
@@ -219,7 +220,7 @@ class HostLogging(componentsBase):
219
220
  __tablename__ = "HostLogging"
220
221
  __table_args__ = {"mysql_engine": "InnoDB", "mysql_charset": "utf8mb4"}
221
222
 
222
- hostName = Column("HostName", String(32), nullable=False, primary_key=True)
223
+ hostName = Column("HostName", String(255), nullable=False, primary_key=True)
223
224
  # status
224
225
  DIRAC = Column("DIRACVersion", String(64))
225
226
  Extension = Column("Extension", String(512))
@@ -1,6 +1,7 @@
1
1
  """
2
2
  Utilities for ComponentMonitoring features
3
3
  """
4
+
4
5
  import datetime
5
6
  import socket
6
7
 
@@ -30,7 +31,6 @@ def monitorInstallation(componentType, system, component, module=None, cpu=None,
30
31
 
31
32
  if not hostname:
32
33
  hostname = socket.getfqdn()
33
- hostname = hostname[0:64]
34
34
  instance = component[0:32]
35
35
 
36
36
  result = monitoringClient.installationExists(
@@ -2,6 +2,7 @@
2
2
  """
3
3
  Uninstallation of a DIRAC component
4
4
  """
5
+
5
6
  import socket
6
7
 
7
8
  from DIRAC import exit as DIRACexit
@@ -2,6 +2,7 @@
2
2
  The WebAppHandler module provides a class to handle web requests from the DIRAC WebApp.
3
3
  It is not indented to be used in diracx
4
4
  """
5
+
5
6
  from DIRAC import S_ERROR, S_OK
6
7
  from DIRAC.ConfigurationSystem.Client.Helpers.Operations import Operations
7
8
  from DIRAC.ConfigurationSystem.Client.Helpers.Resources import getSites
@@ -527,13 +528,21 @@ class WebAppHandler(RequestHandler):
527
528
  ops = Operations()
528
529
  # Prepare the standard structure now within the resultDict dictionary
529
530
  resultDict = {}
530
- trList = res["Records"]
531
+ # Reconstruct just the values list
532
+ trList = [
533
+ [str(item) if not isinstance(item, int) else item for item in trans_dict.values()]
534
+ for trans_dict in res["Value"]
535
+ ]
536
+
531
537
  # Create the total records entry
532
538
  nTrans = len(trList)
533
539
  resultDict["TotalRecords"] = nTrans
534
540
  # Create the ParameterNames entry
535
- # As this list is a reference to the list in the DB, we cannot extend it, therefore copy it
536
- resultDict["ParameterNames"] = list(res["ParameterNames"])
541
+ try:
542
+ resultDict["ParameterNames"] = list(res["Value"][0].keys())
543
+ except IndexError:
544
+ # As this list is a reference to the list in the DB, we cannot extend it, therefore copy it
545
+ resultDict["ParameterNames"] = list(cls.transformationDB.TRANSPARAMS)
537
546
  # Add the job states to the ParameterNames entry
538
547
  taskStateNames = TASKS_STATE_NAMES + ops.getValue("Transformations/AdditionalTaskStates", [])
539
548
  resultDict["ParameterNames"] += ["Jobs_" + x for x in taskStateNames]
@@ -75,8 +75,10 @@ class IdProviderFactory:
75
75
 
76
76
  if client_name_prefix:
77
77
  client_name_prefix = client_name_prefix + "_"
78
- pDict["client_id"] = pDict[f"{client_name_prefix}client_id"]
79
- pDict["client_secret"] = pDict[f"{client_name_prefix}client_secret"]
78
+ if f"{client_name_prefix}client_id" in pDict:
79
+ pDict["client_id"] = pDict[f"{client_name_prefix}client_id"]
80
+ if f"{client_name_prefix}client_secret" in pDict:
81
+ pDict["client_secret"] = pDict[f"{client_name_prefix}client_secret"]
80
82
 
81
83
  pDict.update(kwargs)
82
84
  pDict["ProviderName"] = name
@@ -63,6 +63,12 @@ Resources
63
63
  client_secret = IdP_client_secret
64
64
  scope = openid+profile+offline_access+eduperson_entitlement
65
65
  }
66
+ SomeIdP3.partial
67
+ {
68
+ ProviderType = OAuth2
69
+ issuer = https://and-another-idp.url/
70
+ scope = openid+profile+offline_access+eduperson_entitlement
71
+ }
66
72
  }
67
73
  }
68
74
  """
@@ -77,6 +83,7 @@ idps = IdProviderFactory()
77
83
  ("SomeIdP1.2", {"OK": True}, "https://idp.url/", "IdP_client_id2", "IdP_client_secret"),
78
84
  ("SomeIdP2", {"OK": True}, "https://another-idp.url/", "IdP_client_id1", "IdP_client_secret"),
79
85
  ("SomeIdP3", {"OK": True}, "https://and-another-idp.url/", "IdP_client_id3", "IdP_client_secret"),
86
+ ("SomeIdP3.partial", {"OK": True}, "https://and-another-idp.url/", None, None),
80
87
  # Try to get an unknown DIRAC client
81
88
  ("DIRACUnknown", {"OK": False, "Message": "DIRACUnknown does not exist"}, None, None, None),
82
89
  ],
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: DIRAC
3
- Version: 9.0.11
3
+ Version: 9.0.12
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,7 +19,7 @@ Requires-Dist: cachetools
19
19
  Requires-Dist: certifi
20
20
  Requires-Dist: cwltool
21
21
  Requires-Dist: diraccfg
22
- Requires-Dist: DIRACCommon==v9.0.11
22
+ Requires-Dist: DIRACCommon==v9.0.12
23
23
  Requires-Dist: diracx-client>=v0.0.1
24
24
  Requires-Dist: diracx-core>=v0.0.1
25
25
  Requires-Dist: diracx-cli>=v0.0.1
@@ -12,9 +12,9 @@ DIRAC/AccountingSystem/Client/__init__.py,sha256=dT6KQbA-0PPotnu-T_ofVcW-HmuRL3Q
12
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
- DIRAC/AccountingSystem/Client/Types/Network.py,sha256=xKoiolYkUjG8hpNAzJEdp6luc6TARyGlIa7UYs9QYeA,1165
15
+ DIRAC/AccountingSystem/Client/Types/Network.py,sha256=qrK6Wm0g4T2kuIMBiljnF_FUUOecMXge22wGnSeA7Y4,1164
16
16
  DIRAC/AccountingSystem/Client/Types/Pilot.py,sha256=6nCIjelk2-GRUXwrakPg9l3YV20QJtrz-V52Tm8BHJ0,634
17
- DIRAC/AccountingSystem/Client/Types/PilotSubmission.py,sha256=w1ZVuorXlDpMYLwjlmTw_nEjXkgwha9WUWfkj7RqetA,1128
17
+ DIRAC/AccountingSystem/Client/Types/PilotSubmission.py,sha256=mImBR6IV5G_usxrLBo45FEf8fF6ehQuJ4Wws9jQaXsg,1123
18
18
  DIRAC/AccountingSystem/Client/Types/StorageOccupancy.py,sha256=8UOSUQK9xeH7ksobmQYIADyTy-_dhRSP2WYYG96qXT4,1100
19
19
  DIRAC/AccountingSystem/Client/Types/WMSHistory.py,sha256=JI1v4BUU64sumPfSBya5v6FSZ1yLnMWura32iUqyr5A,1341
20
20
  DIRAC/AccountingSystem/Client/Types/__init__.py,sha256=xTNU0D41kHNeg1sJOzzCTBuJdGjkw_gf3OCrJo4MYF0,52
@@ -52,7 +52,7 @@ DIRAC/ConfigurationSystem/Agent/RucioSynchronizerAgent.py,sha256=6gJ7MXsxkp0ig2b
52
52
  DIRAC/ConfigurationSystem/Agent/VOMS2CSAgent.py,sha256=QOqFMOIfv5_g2xW_4XnMCjFeXGERLfCfB-ANyu__LYM,11520
53
53
  DIRAC/ConfigurationSystem/Agent/__init__.py,sha256=bnNO28LCttSJYSCjB66MvfANnT4NHdWqFMe3fMXbeAM,37
54
54
  DIRAC/ConfigurationSystem/Agent/test/Test_Bdii2CS.py,sha256=0lkJ25MooUAe0kPJRH5o2skWxx-99V1rdfzeyGZfvxc,5467
55
- DIRAC/ConfigurationSystem/Client/CSAPI.py,sha256=msOc5s5TXQ0tuxNQ9D8JMX462f2F43Oxx5p2kXh9dFM,36586
55
+ DIRAC/ConfigurationSystem/Client/CSAPI.py,sha256=Kx38hNHO95iqdnk9UOohU3-BIWFf8Hskyj3IB4BEguA,37224
56
56
  DIRAC/ConfigurationSystem/Client/CSCLI.py,sha256=PQXYq3j7zFlKwT7k0nzlvuneBbfc_UxDUdMhS19RzdE,18739
57
57
  DIRAC/ConfigurationSystem/Client/CSShellCLI.py,sha256=dlkGA-2-YJV8mwllJ2qG8_dvQfGsvfp953HilhkyKUs,7696
58
58
  DIRAC/ConfigurationSystem/Client/Config.py,sha256=b8UBxKSJ3ZXVpIDGVXPR95dPs4RApEiLtqdN3fDo22k,524
@@ -508,7 +508,7 @@ DIRAC/FrameworkSystem/Client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
508
508
  DIRAC/FrameworkSystem/Client/test/Test_ComponentInstaller.py,sha256=OUIbwU5ypLpSDA-LhSlK-_Z3wPV_ZBMk5n4Y_jiipd0,505
509
509
  DIRAC/FrameworkSystem/DB/AuthDB.py,sha256=QLotpINMq45FNoFO2AV3OH5Ij5i__HHk-p-m-b_ieaQ,11938
510
510
  DIRAC/FrameworkSystem/DB/AuthDB.sql,sha256=tcAnRmBBEDxljAXILp8tlLzuEb7vOoN190KQK7NSbQQ,95
511
- DIRAC/FrameworkSystem/DB/InstalledComponentsDB.py,sha256=ZmDW-gXKg7syzCNo53zELYMM8vtz7vz2LlMYUh69_fs,43156
511
+ DIRAC/FrameworkSystem/DB/InstalledComponentsDB.py,sha256=_zVMmu9SeHiiKQH2qkuguBvQMAyrv99BPotDD3P_0AQ,43159
512
512
  DIRAC/FrameworkSystem/DB/InstalledComponentsDB.sql,sha256=-LFjjn1gRQo7zDOclKmFwmbZi_lXXnx_B17cZPLBUak,113
513
513
  DIRAC/FrameworkSystem/DB/ProxyDB.py,sha256=wt72y-ZtHyes1oLGgB-LiLuyZRNBelmCaEijad3raxI,39934
514
514
  DIRAC/FrameworkSystem/DB/ProxyDB.sql,sha256=QwWe_mRX_NbZQVBo3TzA60L3FemI-oLY8G7_4uRFPzU,96
@@ -531,7 +531,7 @@ DIRAC/FrameworkSystem/Service/TornadoTokenManagerHandler.py,sha256=9DnxtK0Tam_9W
531
531
  DIRAC/FrameworkSystem/Service/TornadoUserProfileManagerHandler.py,sha256=9z8Vky8YJ0reR_5E6RtxStakfg22qiGCvq-tUjojRzo,559
532
532
  DIRAC/FrameworkSystem/Service/UserProfileManagerHandler.py,sha256=DyZFvqFeKjxVYNXqGYLkTlYgj3raUsfsb68GE4FX5x4,5707
533
533
  DIRAC/FrameworkSystem/Service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
534
- DIRAC/FrameworkSystem/Utilities/MonitoringUtilities.py,sha256=QS3hVXVsanmm1NsevY_D5KeBR_xjJinVBzRJhleBbao,2590
534
+ DIRAC/FrameworkSystem/Utilities/MonitoringUtilities.py,sha256=6KZ4lyQ4lCqiiujHJ-2gveZpb9edK2adR0mMeQY1wsQ,2557
535
535
  DIRAC/FrameworkSystem/Utilities/TokenManagementUtilities.py,sha256=eEeKs9JMJOiokjDtDcRlyQiRWIM1TNYwcVy1C4oozuY,3034
536
536
  DIRAC/FrameworkSystem/Utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
537
537
  DIRAC/FrameworkSystem/Utilities/diracx.py,sha256=cyHtKuRY-maOUmY96uhj5sEKzb6nTEhNvOd2LlDhp18,3647
@@ -592,7 +592,7 @@ DIRAC/FrameworkSystem/scripts/dirac_start_component.py,sha256=nlCSTjG_w57t4W2vlV
592
592
  DIRAC/FrameworkSystem/scripts/dirac_status_component.py,sha256=KbNYSyHLZueVNLBbFHNnl7MF5gWR2JTie13GH6tlIfQ,1658
593
593
  DIRAC/FrameworkSystem/scripts/dirac_stop_component.py,sha256=RJJy63ilUEV5qyP_r2iXAGytt5TftAM72xgD1vZdpJs,1272
594
594
  DIRAC/FrameworkSystem/scripts/dirac_sys_sendmail.py,sha256=lJ6OO_vkaSVhXp_p79LYTZoq9jT5qLU0qXOfFEgK9fw,2453
595
- DIRAC/FrameworkSystem/scripts/dirac_uninstall_component.py,sha256=FTA2zA0cACM31u_uFZgsUYC6S0Fh3xmkqDjgOPdFr4k,2797
595
+ DIRAC/FrameworkSystem/scripts/dirac_uninstall_component.py,sha256=LIXwHPan_xp-ewZbHPbZvoabQlvwTP4GC2PPaopGeGQ,2798
596
596
  DIRAC/Interfaces/__init__.py,sha256=hycApm2mNnIWcdIzoOKQZLa8-LpSpfG2jdfgyKGN9Gg,34
597
597
  DIRAC/Interfaces/API/Dirac.py,sha256=alMGB5YV2Oyo44G2k_jdSSvHRhZz0WmN3bMBeXgN11I,94619
598
598
  DIRAC/Interfaces/API/DiracAdmin.py,sha256=PDwWl1KCckL2xhLodeWJhVS4ZondNvfdbTUEE3pukXA,28135
@@ -701,7 +701,7 @@ DIRAC/MonitoringSystem/DB/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
701
701
  DIRAC/MonitoringSystem/DB/test/Test_monitoringdb.py,sha256=Jf4NZgb9V6U4DYk4SCLVoTqxJVBYsj49rIaYB7e6qxw,2788
702
702
  DIRAC/MonitoringSystem/Service/MonitoringHandler.py,sha256=JGN1MUsxP8swTuIa4qdPvo-O4UoA6TkxjfDZ1sC6L2w,12332
703
703
  DIRAC/MonitoringSystem/Service/TornadoMonitoringHandler.py,sha256=06gIHrrLJTgI-vnCHAGsDDjZrRwJaMsa8ESsdWy0Ir8,1550
704
- DIRAC/MonitoringSystem/Service/WebAppHandler.py,sha256=utTyM5L28jEli_ZNeg5S4-prT4c38aeJHDhgyI-Sr-4,23148
704
+ DIRAC/MonitoringSystem/Service/WebAppHandler.py,sha256=mm414IeI9hLTAQgugrqMiFVqM0kIfLYiBt93xgDuI4E,23459
705
705
  DIRAC/MonitoringSystem/Service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
706
706
  DIRAC/MonitoringSystem/private/DBUtils.py,sha256=bBEJoy3KCaYi7tIAmNdCIUF5K5-oJAS3qJn0ngpo-HQ,7163
707
707
  DIRAC/MonitoringSystem/private/MainReporter.py,sha256=a1yTBMA_wQIzohugtV_MXxiwV7Qo1e2bGrJQZFO93Go,3433
@@ -949,13 +949,13 @@ DIRAC/Resources/Computing/test/Test_SSHComputingElement.py,sha256=ahYUZ9hySaEXik
949
949
  DIRAC/Resources/Computing/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
950
950
  DIRAC/Resources/IdProvider/CheckInIdProvider.py,sha256=Tq8ENK6yhC7Tl6JkTF1q8mCOrFRfsN3ediF251iU4oM,1163
951
951
  DIRAC/Resources/IdProvider/IAMIdProvider.py,sha256=kk2ty2mLevxGmJRBpLYlQXce_vy4cxp-dO2w7b1rCz0,822
952
- DIRAC/Resources/IdProvider/IdProviderFactory.py,sha256=bAUYnGQQUhCCXTq1o68lRlOPG--77oR9JoOAX6t0TNs,4238
952
+ DIRAC/Resources/IdProvider/IdProviderFactory.py,sha256=mt8Y9mfGXCfFZQ0hlQl4cDHB8vkR-dbFVjnxiNCPRmw,4366
953
953
  DIRAC/Resources/IdProvider/OAuth2IdProvider.py,sha256=smoGhSD1JsyjJDot9XmMUmT7fw8kcfS3w392s2Lg9P8,23650
954
954
  DIRAC/Resources/IdProvider/Utilities.py,sha256=bHF-aNtOapEN7Z18XKOFfAcXCHceLbEWU9dOrKeHxDo,1785
955
955
  DIRAC/Resources/IdProvider/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
956
956
  DIRAC/Resources/IdProvider/tests/IdProviderTestUtilities.py,sha256=dYNmgBAE1QhTXHrUX4O5yC_qCF--vg45DN4PC52ZoAA,372
957
957
  DIRAC/Resources/IdProvider/tests/Test_IdProvider.py,sha256=8C9k5w2dsncr87sUc2hdNfOEe9DfN5-CXfUFeivtH1A,5649
958
- DIRAC/Resources/IdProvider/tests/Test_IdProviderFactory.py,sha256=Hgz5h5q0HrSoPQpTFC0f-9u3hZddKbtKs6tP8H4KrFA,4851
958
+ DIRAC/Resources/IdProvider/tests/Test_IdProviderFactory.py,sha256=9zJYGrL7d8jmGUfhfD6izbiVST_iA74rOpsCCTCfAAk,5110
959
959
  DIRAC/Resources/IdProvider/tests/Test_IdProviderUtilities.py,sha256=qqc7gaiIZs9mrHL9bq-gmH0oWkKAeLVy5D9S2_JBRG0,4861
960
960
  DIRAC/Resources/LogBackends/AbstractBackend.py,sha256=a8CymVZ1Ew8IDDnOh_4pkO70vPNf8Of0d8cWU3gwb0Y,5269
961
961
  DIRAC/Resources/LogBackends/ElasticSearchBackend.py,sha256=FANKSEKw21oW8aIQJ2HTYpIfqH0rFaTKBnp2fRssA1M,3113
@@ -1296,9 +1296,9 @@ DIRAC/tests/Workflow/Integration/exe-script.py,sha256=B_slYdTocEzqfQLRhwuPiLyYUn
1296
1296
  DIRAC/tests/Workflow/Integration/helloWorld.py,sha256=tBgEHH3ZF7ZiTS57gtmm3DW-Qxgm_57HWHpM-Y8XSws,205
1297
1297
  DIRAC/tests/Workflow/Regression/helloWorld.py,sha256=69eCgFuVSYo-mK3Dj2dw1c6g86sF5FksKCf8V2aGVoM,509
1298
1298
  DIRAC/tests/Workflow/Regression/helloWorld.xml,sha256=xwydIcFTAHIX-YPfQfyxuQ7hzvIO3IhR3UAF7ORgkGg,5310
1299
- dirac-9.0.11.dist-info/licenses/LICENSE,sha256=uyr4oV6jmjUeepXZPPjkJRwa5q5MrI7jqJz5sVXNblQ,32452
1300
- dirac-9.0.11.dist-info/METADATA,sha256=T_cs5gCuIFDIbKQIZplKwcCdTEx9ij6h2miJDh1axV4,10018
1301
- dirac-9.0.11.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1302
- dirac-9.0.11.dist-info/entry_points.txt,sha256=hupzIL8aVmjK3nn7RLKdhcaiPmLOiD3Kulh3CSDHKmw,16492
1303
- dirac-9.0.11.dist-info/top_level.txt,sha256=RISrnN9kb_mPqmVu8_o4jF-DSX8-h6AcgfkO9cgfkHA,6
1304
- dirac-9.0.11.dist-info/RECORD,,
1299
+ dirac-9.0.12.dist-info/licenses/LICENSE,sha256=uyr4oV6jmjUeepXZPPjkJRwa5q5MrI7jqJz5sVXNblQ,32452
1300
+ dirac-9.0.12.dist-info/METADATA,sha256=XX6HSXsfMOGIjBxsgl0quVGyJWu8XMx3eSAZ5VhvNWE,10018
1301
+ dirac-9.0.12.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1302
+ dirac-9.0.12.dist-info/entry_points.txt,sha256=hupzIL8aVmjK3nn7RLKdhcaiPmLOiD3Kulh3CSDHKmw,16492
1303
+ dirac-9.0.12.dist-info/top_level.txt,sha256=RISrnN9kb_mPqmVu8_o4jF-DSX8-h6AcgfkO9cgfkHA,6
1304
+ dirac-9.0.12.dist-info/RECORD,,
File without changes