Closed (fixed)
Project:
Entityqueue
Version:
8.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
2 Apr 2020 at 10:05 UTC
Updated:
16 Dec 2022 at 08:52 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #2
d.novikov commentedThis happened when I updated the module to the current dev version (#2bced7230339cd91d02b01f8cc0d58a62afed16f). Suggested patch attached.
Comment #3
amateescu commentedThe 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...
Comment #4
d.novikov commented@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.Comment #5
amateescu commentedNice, I'm glad you were able to figure it out :)
Comment #6
naveenvalecha@d.novikov
#4, Please share how you fix it.
Comment #8
joel_osc commentedComment #9
alphex commentedWhat is the solution mentioned in #4 ?
Comment #10
arshadkhan35 commentedRan into the same issue , #2 patch worked, but not sure about the solution mentioned in #4. Please share the #4 fix.
Comment #11
gbisht commentedHere is a new patch fixing two issues:
But the reason is still not clear on what situation this will happen in as a subqueue should be created on entity queue addition.