Skip to content

Commit 90e5234

Browse files
authored
Merge pull request #6461 from fstagni/81_fixes3
[8.1] hackathon fixes
2 parents cc1a427 + 742ffe4 commit 90e5234

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

docs/source/AdministratorGuide/ServerInstallations/InstallingWebAppDIRAC.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,6 @@ Section has the following structure::
164164
Applications
165165
{
166166
Accounting = DIRAC.Accounting
167-
Activity Monitor = DIRAC.ActivityMonitor
168167
Component History = DIRAC.ComponentHistory
169168
Configuration Manager = DIRAC.ConfigurationManager
170169
Downtimes = DIRAC.Downtimes

src/DIRAC/Core/Tornado/Server/private/BaseRequestHandler.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -739,6 +739,8 @@ def _authzSSL(self):
739739
elif balancer:
740740
if self.request.headers.get("X-Ssl_client_verify") == "SUCCESS" and self.request.headers.get("X-SSL-CERT"):
741741
chainAsText = unquote(self.request.headers.get("X-SSL-CERT"))
742+
else:
743+
return S_ERROR(DErrno.ECERTFIND, "Valid certificate not found.")
742744
else:
743745
return S_ERROR(DErrno.ECERTFIND, "Valid certificate not found.")
744746

src/DIRAC/WorkloadManagementSystem/Agent/StatesAccountingAgent.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@ def execute(self):
115115

116116
self.log.info("Start sending WMSHistory records")
117117
for record in values:
118-
record = record[1:]
119118
rD = {}
120119
for fV in self.__summaryDefinedFields:
121120
rD[fV[0]] = fV[1]

0 commit comments

Comments
 (0)