Fix req compat#8150
Merged
chrisburr merged 3 commits intoDIRACGrid:integrationfrom Apr 11, 2025
Merged
Conversation
chrisburr
approved these changes
Apr 11, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
v8.0requests have OwnerDN and OwnerGroupv9.0requests have Owner and OwnerGroupThere was a compatibility layer that allowed processing v8 request on a v9 server. Unfortunately that did not work well with server certificates (used in the
ReqProxyfor example).To illustrate it, I created a
Requestand dumped it to a json file usingv8.I can then load it, and validate it with a
v9server, and you see theOwnerandOwnerGroupare wrongThe problem is that once the DB is screwed up, you have lost the group information for good, so you can only guess it.
There might still be a problem when the REA tries executing old requests, but since I don't have any of it anymore in the system, I can't check...
The only relevant commit is 543ffce
The other one is auto format...
BEGINRELEASENOTES
*RMS
FIX: RequestValidator sets correct Owner for v8 requests
ENDRELEASENOTES