Skip to content
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

DefaultContentManager.GetAsync(IEnumerable<string> contentItemIds) always updates documents in database #16741

Closed
frank1422 opened this issue Sep 17, 2024 · 8 comments · Fixed by #16757
Labels
Milestone

Comments

@frank1422
Copy link

When calling GetAsync(IEnumerable<string> contentItemIds) on DefaultContentManager it seems like all retrieved documents are updated in the database.

It happens for OrchardCore 2.0.0 (also for older versions when called with VersionOptions.Published)

I would expect that the documents are not updated, which is the case when calling GetAsync(string contentItemId) for each id.

Should

// We save the previous version further because this call might do a session query.
await _session.SaveAsync(item, checkConcurrency: true);

be inside

if (options.IsDraftRequired) {}

as in GetAsync(string contentItemId)?

Copy link
Contributor

Thank you for submitting your first issue, awesome! 🚀 We're thrilled to receive your input. If you haven't completed the template yet, please take a moment to do so. This ensures that we fully understand your feature request or bug report. On what happens next, see the docs.

If you like Orchard Core, please star our repo and join our community channels.

@MikeAlhayek
Copy link
Member

@sebastienros I am thinking the line can be remove. Thoughts?

// We save the previous version further because this call might do a session query.
await _session.SaveAsync(item, checkConcurrency: true);

Because we are saving the item when IsDraftRequired is requested

// We save the previous version further because this call might do a session query.
await _session.SaveAsync(item, checkConcurrency: true);

and on

await _session.SaveAsync(item, checkConcurrency: true);

I am not sure I understand the We save the previous version further because this call might do a session query. comment. But I tend to agree that L291-L292 should be removed.

@sebastienros
Copy link
Member

Lines 291/292 can be removed because of line 302 as you correctly pointed.

// We save the previous version further because this call might do a session query.

Is a wrong copy-paste IMO

@MikeAlhayek
Copy link
Member

@frank1422 thank you for logging this issue. I would love to see a PR from you! Do you think you can submit a PR by removing line 291/292?

@MikeAlhayek MikeAlhayek added this to the 2.x milestone Sep 17, 2024
Copy link
Contributor

We triaged this issue and set the milestone according to the priority we think is appropriate (see the docs on how we triage and prioritize issues).

This indicates when the core team may start working on it. However, if you'd like to contribute, we'd warmly welcome you to do that anytime. See our guide on contributions here.

@sebastienros
Copy link
Member

sebastienros commented Sep 19, 2024

I assume you created the issue because you saw actual commit in the db, I am now wondering what caused it, since yessql would not create an update if the documents are the same. Or is it because we change a version property for instance?

On a similar note, is there a simple way to trigger this method call from the UI?

@frank1422
Copy link
Author

@sebastienros I didn't check the database for actual commits, but we got at lot of ConcurrencyExceptions like

The document with Id '499' and type 'OrchardCore.ContentManagement.ContentItem, OrchardCore.ContentManagement.Abstractions' could not be updated as it has been changed by another process.

The problem started when we upgraded to Orchard Core 2.0.0 specifically on pages where we use a ContentPickerField.

I think the problem when using a ContentPickerField was introduced with 77c69c6. Before that point DefaultContentManager had a separate method (without options) to get multiple content items, which was used in ContentPickerField.cshtml.

I noticed the problem before, when retrieving multiple content items with GetAsync and VersionOptions.Published but thought it was by design and switched to using the version without options.

@frank1422
Copy link
Author

When looking at the old code, I think that 77c69c6 introduced another problem, as the order of the content items are not guaranteed.

github-actions bot pushed a commit that referenced this issue Sep 24, 2024
MikeAlhayek added a commit that referenced this issue Sep 24, 2024
Co-authored-by: Mike Alhayek <mike@crestapps.com>
@MikeAlhayek MikeAlhayek modified the milestones: 2.x, 2.0.1 Sep 24, 2024
sebastienros pushed a commit that referenced this issue Sep 26, 2024
Co-authored-by: Mike Alhayek <mike@crestapps.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants