-
Notifications
You must be signed in to change notification settings - Fork 71
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
Bug: CMS migrator only overwriting the last row in the Revisions database on Facilities products #17587
Comments
Recording of Daniel showing the problem description / demo between prod and Tugboat: |
Migrator made changes to the East Los Angeles Vet Center node on 03/19. It also made changes on 02/02 at 8:00am. 'The Last Saved by an Editor' is set to 02/02 at 11:36am, but there are no revisions in between the changes from the CMS Migrator: When comparing the last revision with its previous revision there are Hours changes, but there are also Local Spotlight changes that probably shouldn't have been coming from the CMS Migrator: |
There's a known defect with Vet Center last saved by an editor #15124 |
Also I just found a Tugboat that built a few days ago and checked Hopi. It has a revision dated March 13 that seems to be overridden by the March 19th one |
So I think this is something that happened in Drupal core. It looks like in 10.2 they made it so that when an entity is updating from a migrate there is an isSyncing flag that is being set. I guess this keeps the migrate from being able to set the update as a new Revision (see https://www.drupal.org/node/3052115). There is a workaround that's documented here: https://www.drupal.org/node/3426397 |
Plan for moving forward with code fixes:
|
Proposal: since we're on a roll and have time in sprint, let's update this as the implementation, not just spike? Also ticket doesn't have points, so we've already spent prob 3-5, and let's add more for the rest? @Becapa any concerns about handling it that way? If not, I'll update ACs. |
@jilladams That sounds good to me! |
I spent time on Friday and today making a view to make sure that facility name changes have not slipped by without our notice. The good news is that it appears none have happened since 10.2 came out. Do we want this view added to prod? @xiongjaneg |
The more views the better? It sounds like it's been helpful for you so may be so again in the future. Thanks! |
After a little more discovery, I found that we already have a view that does this: No need for an additional view. |
@omahane @dsasser any thoughts on how we might verify this to close it? I took a look to see if Forms would make it easy. PR merged after 3/27 nightly migration. 3/28 nightly migration only modified one form from what I can see:
Not totally obvious to me that anything's wrong, but I'm not sure what would make me think that other than another stomped edit. |
End of sprint: discussed with Christian / Daniel. Forms looks ok. We'd like to monitor migrations for a little bit just to make sure nothing looks amiss before we declare success. Will keep ticket open for follow up in next sprint. |
OK, we do have some strangeness going on, all circling around March 2, 2024, 7:28 am. (CT) Updated date not matching the revision logContent view (/admin/content)Palm Bay VA Clinic was updated on April 8, 2024 Recent changesComparing revisionsThe only difference is the addition of a health service. VAMC facility health service creationThe time at which the health service was created is the same time at which /admin/content lists the facility as being updated. The facility is updated when a new service is created that is related to it by way of the corresponding entity reference. I suspect that the creation of health services is somehow bypassing the normal process and is creating a new regression, not squashing revisions but using the same time as the last revision when creating a new one. |
Ah, ok. From forms perspective, we have evidence of the migrator making multiple revisions since we pushed this change on 3/27: https://prod.cms.va.gov/find-forms/about-form-28-10289 - has updates from 4/2 and 4/4 both from the migrator. So: I think your notes belong in a new ticket, and we can call the "multiple revisions squashed to a single revision" bug fixed. Let me know if you agree, @omahane and I'll close and put together the new ticket. |
#17808 tracks the new report |
Background
Public Websites discovered a migration problem that may also affect Facilities migrations:
the nightly CMS migration for Forms is not correctly creating Revisions on Forms nodes.
The CMS migrator is always only overwriting the last row in the Revisions database, rather than writing a new row.
The new CMS Migrator revision squashes the most recent previous Revision into it (regardless whether previous is an Editor generated or a CMS Migrator revision). The new Revision contains both sets of changes.
This could snowball: every successive CMS migrator revision will squash the Revision before it. Over time, this could end up with a single Revision that represents several squashes, if only nightly changes are being made, if that makes sense. (Meaning; if a node gets edited 5 times in a day, only the last revision will get squashed into the nightly migration. But if a node is edited once a day, every day's edit will get rolled up into the next nightly CMS migration revision.)
The Forms migration is also no longer correctly applying all the Flags we expect to be applied to Forms. (Specifically our Changed Title flag is no longer being correctly applied.)
PW is going to work with CAIA since they're regularly editing, just to see if we can confirm that edited content is successfully capturing all the expected revisions.
There's also a chance this will trace back to Drupal core and become a CMS team problem.
Flags
Public Websites also has an instance of Flags not being correctly applied during migration. While checking migrations, it would be wise to test flags and attempt to verify if flags are being applied as expected.
Helpful links
Problem statement
Facilities needs to know if CMS migrator is not correctly creating revisions on Facilities products nodes.
Acceptance Criteria
The text was updated successfully, but these errors were encountered: