-
Notifications
You must be signed in to change notification settings - Fork 157
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
search index not updating properly when a versioned reference is updated to a different versioned reference #3446
Comments
Per discussion with Robin ... added label, estimate, and release |
It appears as though the reference version field is not included in the fingerprint and so the parameter update is being skipped because the ingestion code thinks that nothing has changed. |
Signed-off-by: Robin Arnold <robin.arnold@ibm.com>
Signed-off-by: Robin Arnold <robin.arnold@ibm.com>
Signed-off-by: Robin Arnold <robin.arnold@ibm.com>
Signed-off-by: Robin Arnold <robin.arnold@ibm.com>
Signed-off-by: Robin Arnold <robin.arnold@ibm.com>
Issue #3446 reference version missing from parameter hash
I verified that the behavior described in this issue is now working as expected. |
Created a Patient, deleted it, then created it again (current version is 3)
Created a Condition with subject set to Patient/<patient.resource.id>/_history/1
Did a search for this Condition with _include of the subject:
.../Condition?_id=<condition.resource.id>&_include=Condition:subject
Received the expected response of the Condition along with Patient/<patient.resource.id>/_history/1
Updated the Condition subject to Patient/<patient.resource.id>/_history/2
Repeated the search above
Expected to receive only the Condition resource since the subject versioned reference is a deleted Patient.
Instead, received the previous search response of the Condition along with Patient/<patient.resource.id>/1
Working on the latest version of main.
The text was updated successfully, but these errors were encountered: