Skip to content

Commit 661339d

Browse files
committed
fix: define _fullComponentName as None in the class definition
1 parent 684d715 commit 661339d

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

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

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -272,13 +272,10 @@ def _authzMYAUTH(self):
272272
# The variable that will contain the result of the request, see __execute method
273273
__result = None
274274

275-
# Below are variables that the developer can OVERWRITE as needed
275+
# Full component name in the form <System>/<Component>
276+
_fullComponentName = None
276277

277-
# System name with which this component is associated.
278-
# Developer can overwrite this
279-
# if your handler is outside the DIRAC system package (src/DIRAC/XXXSystem/<path to your handler>)
280-
SYSTEM_NAME = None
281-
COMPONENT_NAME = None
278+
# Below are variables that the developer can OVERWRITE as needed
282279

283280
# Base system URL. If defined, it is added as a prefix to the handler generated.
284281
BASE_URL = None

0 commit comments

Comments
 (0)