You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/UserGuide/GettingStarted/GettingUserIdentity/index.rst
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,8 @@ If another non-default user group is needed, the command becomes::
54
54
55
55
where ``user_group`` is the desired DIRAC group name for which the user is entitled.
56
56
57
-
.. note:: Version 8.0 added the possibility to generate proxy with new `dirac-login` command, use *--help* switch for more information. E.g.: dirac-login <user_group>
57
+
.. versionadded:: 8.0
58
+
added the possibility to generate proxy with new `dirac-login` command, use *--help* switch for more information. E.g.: dirac-login <user_group>
Copy file name to clipboardExpand all lines: src/DIRAC/Core/Tornado/Server/private/BaseRequestHandler.py
+25-6Lines changed: 25 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -38,8 +38,11 @@
38
38
39
39
40
40
classTornadoResponse(object):
41
-
"""This class registers tornado methods with arguments in the order they are called
42
-
from TornadoResponse to call them later.
41
+
"""This class registers tornado methods with arguments in the same order they are called
42
+
from TornadoResponse instance to call them later in the main thread.
43
+
44
+
This class can be useful if you are afraid to use Tornado methods in a non-main thread due to a warning from Tornado that "methods on RequestHandler and elsewhere in Tornado are not thread-safe"
# Which grant type to use. This definition refers to the type of authorization, ie which algorithm will be used to verify the incoming request and obtain user credentials.
208
+
# These algorithms will be applied in the same order as in the list.
209
+
210
+
# SSL - add to list to enable certificate reading
211
+
# JWT - add to list to enable reading Bearer token
212
+
# VISITOR - add to list to enable authorization as visitor, that is, without verification
0 commit comments