Ran into this issue, this patch helped me temporarily get past a whitescreen and debug the real problem with linkchecker failing when adding a simple entityqueue. See related.

Comments

d.novikov created an issue. See original summary.

d.novikov’s picture

Status: Active » Needs review
StatusFileSize
new682 bytes

This happened when I updated the module to the current dev version (#2bced7230339cd91d02b01f8cc0d58a62afed16f). Suggested patch attached.

amateescu’s picture

Status: Needs review » Postponed (maintainer needs more info)

The underlying problem here is that you have a queue (config entity) which that uses the "Simple" queue handler, and it doesn't have a subqueue (content entity) automatically created for it.

This means that this specific queue is broken, and the proposed patch just hides the problem :)

It would be better if you could investigate why that queue did not have a subqueue created for it automatically after it was saved...

d.novikov’s picture

@amateescu, you're right, of course. It started to happen after the module update. It seems like entityqueue_update_8004() does not install "entity_subqueue" entity type if it didn't exist before. I needed to install it with a bit of custom code.

amateescu’s picture

Category: Bug report » Support request
Status: Postponed (maintainer needs more info) » Fixed

Nice, I'm glad you were able to figure it out :)

naveenvalecha’s picture

@d.novikov
#4, Please share how you fix it.

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.

joel_osc’s picture

alphex’s picture

What is the solution mentioned in #4 ?

arshadkhan35’s picture

Ran into the same issue , #2 patch worked, but not sure about the solution mentioned in #4. Please share the #4 fix.

gbisht’s picture

StatusFileSize
new1.32 KB

Here is a new patch fixing two issues:

  1. Using #2 patch to fix entity queues listing page
  2. #3279046: Error on configuration save for simple queue with no subqueue. This patch adds the subqueue to the queue on update.

But the reason is still not clear on what situation this will happen in as a subqueue should be created on entity queue addition.