Scheduler CRON gets failed when node status is already in unpublished or draft state

Created on 15 January 2024, about 1 year ago

Problem/Motivation

Getting message of successfully cron run but getting logs of failure of node changed. This issue we are getting for nodes which are manually changed to draft or unpublished state and even unpublished scheduler date is also set.

Steps to reproduce

  1. For any of node set scheduler unpublish date to some random date and time
  2. Then manually set that node to unpublished or draft moderation state before that date.
  3. When scheduler cron run it checks for published state instead of published state it get unpublished or draft state it returns failure code.

Proposed resolution

In this function "scheduler_content_moderation_integration_scheduler_unpublish_process", we have to check for if entity not published state it will return.

Remaining tasks

// Check for moderation value not equal to publish it will return.
if ($entity->moderation_state->value !== 'published') {
return;
}

User interface changes

API changes

Data model changes

🐛 Bug report
Status

Active

Version

2.0

Component

Code

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @neelam_wadhwani
  • Added a patch for checking published state.

  • Status changed to Needs review about 1 year ago
  • Open on Drupal.org →
    Core: 9.5.x + Environment: PHP 8.1 & MySQL 5.7
    last update about 1 year ago
    Waiting for branch to pass
  • Open in Jenkins → Open on Drupal.org →
    Core: 10.2.x + Environment: PHP 8.1 & MySQL 5.7
    last update about 1 year ago
    27 pass, 10 fail
  • Status changed to Needs work about 1 year ago
  • 🇺🇸United States smustgrave

    Appears to have test failures that will have to be addressed

  • Open in Jenkins → Open on Drupal.org →
    Core: 10.2.x + Environment: PHP 8.1 & MySQL 5.7
    last update 12 months ago
    Patch Failed to Apply
  • 🇺🇸United States jtjones23

    Patch #5 failed to apply for me.

    PHP 8.2

  • 🇺🇸United States smustgrave

    Fixes will need to be against 3.0.x

  • 🇸🇪Sweden mali2022

    Patch #8 works for me on 3.0.x.
    Only a slight change was needed in #2 patch.

  • 🇸🇪Sweden mali2022

    Patch #9 for 3.0.x.
    Only a slight change on #2 patch (return -> return 0).

  • Status changed to Needs review 7 months ago
  • 🇸🇪Sweden mali2022

    Patch for 3.0.x.
    Only a slight change on #2 patch (return -> return 0).

  • 🇸🇪Sweden mali2022

    Patch for 3.0.x.
    Only a slight change on #2 patch (return -> return 0).

  • 🇸🇪Sweden mali2022

    Patch for 3.0.x.
    Only a slight change on #2 patch (return -> return 0).

  • 🇸🇪Sweden mali2022

    Patch for 3.0.x.
    Only a slight change on #2 patch (return -> return 0).

  • 🇸🇪Sweden mali2022

    Patch for 3.0.x.
    Only a slight change on #2 patch (return -> return 0).

  • 🇺🇸United States smustgrave

    Fixes should be in MR.

  • Assigned to divyansh.gupta
  • Status changed to Needs work 3 months ago
  • 🇮🇳India divyansh.gupta Jaipur

    Working on it.

  • 🇮🇳India divyansh.gupta Jaipur

    Hello @smustgrave,
    I applied the patch provided in #8 and it successfully applied, so i have provided MR as requested,
    Please review.

  • Pipeline finished with Success
    3 months ago
    Total: 288s
    #388262
  • First commit to issue fork.
  • Pipeline finished with Success
    about 1 month ago
    Total: 374s
    #437206
  • Updated the patch to address a bug which results in potentially thousands of revisions being created if the content editor happens to transition to the target moderation state before the scheduler is able to handle it.

    It keeps failing and creating new revisions because:
    1. It's unable to transition back to itself.
    2. The target moderation state is set to NULL.

  • Issue was unassigned.
  • 🇺🇸United States smustgrave

    Can we get a simple test case added

  • 🇬🇧United Kingdom jonathan1055

    Yes we need test coverage for this changes. I made a commen in the MR and test coverage would hopefully show that error.

  • 🇬🇧United Kingdom jonathan1055

    Is anyone on this thread starting to work on adding test coverage? If no one is, then I will, but do not want to waste/duplicate effort if you have already started. If I don't hear back in a couple of days, I'll start on it.

  • 🇬🇧United Kingdom jonathan1055

    I assumed that this error was easily reproducable, but I just tried to follow the steps above. At step 3

    3. Then manually transition to that "unpublished" state before the date.

    how exactly is this achieved?

    My workflow has "archived" as the unpublished state which cannot transition to itself, but that is just a name difference. If you edit the node and select the archived state manually I get the following validation error
    and you cannot save.

    If I use the content views I am also prevented from saving the manual change

    I presume there is another way that the moderation state can be changed manually, so please can this be added in to the Steps to Reproduce in the summary.

  • Thanks for taking this up, I wasn't able to replicate the issue using the UI since the constraint validation stopped it from occuring.

    I just came across the entity with the unpublish_state as it was (NULL), but not exactly sure how it got to that state. Just that it couldn't get itself out of the state.

    Looking at the revision history, the state was as follows:

    So it's possible the state was changed using a different mechanism that didn't check for validation constraints (not sure as there are no revision log messages for it).

    Either way, in the event that an invalid transition is reached, the current error handling is such that it'll always clear the target state, and after the module returns -1, it'll be resaved with the now NULL target state and result in the loop.

    I think the way to provide a test case for it is to change the moderation state directly rather than through the UI, so that the -1 cases can be properly tested for.

  • 🇬🇧United Kingdom jonathan1055

    Thanks @codebymikey it is helpful to know that I was not missing something simple. Yes I agree even this scenario is hard to replicate in normal circumstances we still need to cater for it and prevent the loop. I can work on a test for this.

Production build 0.71.5 2024