Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[8.1] hackathon fixes #7161

Merged
merged 2 commits into from
Aug 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/DIRAC/FrameworkSystem/Client/ComponentInstaller.py
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ def addDefaultOptionsToCS(
"""
Add the section with the component options to the CS
"""
if mySetup is None:
if not mySetup:
mySetup = self.setup

if gConfig_o:
Expand Down Expand Up @@ -2403,7 +2403,7 @@ def installTornado(self):
os.chmod(runFile, self.gDefaultPerms)

except Exception:
error = "Failed to prepare self.setup forTornado"
error = "Failed to prepare self.setup for Tornado"
gLogger.exception(error)
if self.exitOnError:
DIRAC.exit(-1)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ def do_install(self, args):
system,
component,
extensionsByPriority(),
specialOptions,
specialOptions=specialOptions,
addDefaultOptions=True,
)
else:
Expand Down
14 changes: 7 additions & 7 deletions src/DIRAC/WorkloadManagementSystem/ConfigTemplate.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ Services
Authorization
{
Default = authenticated
sendMessage = "Operator"
sendMessage += "GenericPilot"
getMetadata = "Operator"
getMetadata += "TrustedHost"
finaliseLogs = "Operator"
finaliseLogs += "Pilot"
finaliseLogs += "GenericPilot"
sendMessage = Operator
sendMessage += GenericPilot
getMetadata = Operator
getMetadata += TrustedHost
finaliseLogs = Operator
finaliseLogs += Pilot
finaliseLogs += GenericPilot
}
}
##END
Expand Down
Loading