We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 549f411 commit 701a0ebCopy full SHA for 701a0eb
src/DIRAC/TransformationSystem/Client/TransformationClient.py
@@ -1,4 +1,4 @@
1
-""" Class that contains client access to the transformation DB handler. """
+"""Class that contains client access to the transformation DB handler."""
2
3
from DIRAC import S_OK, S_ERROR, gLogger
4
from DIRAC.Core.Base.Client import Client, createClient
@@ -62,8 +62,8 @@ def __init__(self, **kwargs):
62
super().__init__(**kwargs)
63
opsH = Operations()
64
self.maxResetCounter = opsH.getValue("Transformations/FilesMaxResetCounter", 10)
65
-
66
- self.setServer("Transformation/TransformationManager")
+ if "url" not in kwargs:
+ self.setServer("Transformation/TransformationManager")
67
68
def setServer(self, url):
69
self.serverURL = url
0 commit comments