Skip to content

Commit b76ef47

Browse files
committed
docs: fix versioning (9.0 instead of 8.1)
1 parent 4108686 commit b76ef47

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

docs/source/AdministratorGuide/ServerInstallations/environment_variable_configuration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ DIRAC_NO_CFG
5858
If set to anything, cfg files on the command line must be passed to the command using the --cfg option.
5959

6060
DIRAC_USE_JSON_ENCODE
61-
Controls the transition to JSON serialization. See the information in :ref:`jsonSerialization` page (default=Yes since 8.1)
61+
Controls the transition to JSON serialization (default=Yes since 9.0)
6262

6363
DIRAC_ROOT_PATH
6464
If set, overwrites the value of DIRAC.rootPath.

src/DIRAC/RequestManagementSystem/private/RequestValidator.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -282,11 +282,9 @@ def setAndCheckRequestOwner(request, remoteCredentials):
282282
ownershipCheck = request.OwnerDN
283283
if not hasattr(request, "OwnerDN") and hasattr(
284284
request, "Owner"
285-
): # Requests created by v8.1 client for v8.1 servers
285+
): # Requests created by v9 client for v9 servers
286286
ownershipCheck = request.Owner
287-
if hasattr(request, "OwnerDN") and hasattr(
288-
request, "Owner"
289-
): # Requests created by v8.0 client for v8.1 servers
287+
if hasattr(request, "OwnerDN") and hasattr(request, "Owner"): # Requests created by v8.0 client for v9 servers
290288
ownershipCheck = request.Owner
291289
# ##
292290

0 commit comments

Comments
 (0)