Skip to content

Commit

Permalink
docs: fix versioning (9.0 instead of 8.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
fstagni committed Jan 27, 2025
1 parent 4108686 commit 9be8ae7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ DIRAC_NO_CFG
If set to anything, cfg files on the command line must be passed to the command using the --cfg option.

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

DIRAC_ROOT_PATH
If set, overwrites the value of DIRAC.rootPath.
Expand Down
4 changes: 2 additions & 2 deletions src/DIRAC/RequestManagementSystem/private/RequestValidator.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,11 +282,11 @@ def setAndCheckRequestOwner(request, remoteCredentials):
ownershipCheck = request.OwnerDN
if not hasattr(request, "OwnerDN") and hasattr(
request, "Owner"
): # Requests created by v8.1 client for v8.1 servers
): # Requests created by v9 client for v9 servers
ownershipCheck = request.Owner
if hasattr(request, "OwnerDN") and hasattr(
request, "Owner"
): # Requests created by v8.0 client for v8.1 servers
): # Requests created by v8.0 client for v9 servers
ownershipCheck = request.Owner
# ##

Expand Down

0 comments on commit 9be8ae7

Please sign in to comment.