Parent definition "eca.execution.subscriber_parent" does not exist.
>>> [!note] Migrated issue <!-- Drupal.org comment --> <!-- Migrated from issue #3412203. --> Reported by: [rclemings](https://www.drupal.org/user/917304) >>> <h3 id="summary-problem-motivation">Problem/Motivation</h3> <p>When I try to install eca_push_framework I get this error:</p> <pre>Symfony\Component\DependencyInjection\Exception\RuntimeException: Service "eca_push_framework.subscriber": Parent definition "eca.execution.subscriber_parent" does not exist. in Symfony\Component\DependencyInjection\Compiler\ResolveChildDefinitionsPass-&gt;doResolveDefinition() (line 75 of /path/to/public_html/vendor/symfony/dependency-injection/Compiler/ResolveChildDefinitionsPass.php).</pre><p>This is in eca_push_framework.services.yml:</p> <pre>services:<br>&nbsp; eca_push_framework.subscriber:<br>&nbsp;&nbsp;&nbsp; class: Drupal\eca_push_framework\EventSubscriber\EcaPushFramework<br>&nbsp;&nbsp;&nbsp; parent: eca.execution.subscriber_parent<br>&nbsp;&nbsp;&nbsp; tags:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - { name: event_subscriber }</pre><p>I can't find "eca.execution.subscriber_parent" or any reference to it anywhere else in my code.</p> <p>Is this a bug or am I missing something?</p> <p>Traceback:</p> <pre>Symfony\Component\DependencyInjection\Compiler\ResolveChildDefinitionsPass-&gt;resolveDefinition() (Line: 44)<br>Symfony\Component\DependencyInjection\Compiler\ResolveChildDefinitionsPass-&gt;processValue() (Line: 86)<br>Symfony\Component\DependencyInjection\Compiler\AbstractRecursivePass-&gt;processValue() (Line: 35)<br>Symfony\Component\DependencyInjection\Compiler\ResolveChildDefinitionsPass-&gt;processValue() (Line: 47)<br>Symfony\Component\DependencyInjection\Compiler\AbstractRecursivePass-&gt;process() (Line: 80)<br>Symfony\Component\DependencyInjection\Compiler\Compiler-&gt;compile() (Line: 767)<br>Symfony\Component\DependencyInjection\ContainerBuilder-&gt;compile() (Line: 1335)<br>Drupal\Core\DrupalKernel-&gt;compileContainer() (Line: 934)<br>Drupal\Core\DrupalKernel-&gt;initializeContainer() (Line: 816)<br>Drupal\Core\DrupalKernel-&gt;updateModules() (Line: 608)<br>Drupal\Core\Extension\ModuleInstaller-&gt;updateKernel() (Line: 244)<br>Drupal\Core\Extension\ModuleInstaller-&gt;install() (Line: 83)<br>Drupal\Core\ProxyClass\Extension\ModuleInstaller-&gt;install() (Line: 502)<br>Drupal\system\Form\ModulesListForm-&gt;submitForm()<br>call_user_func_array() (Line: 114)<br>Drupal\Core\Form\FormSubmitter-&gt;executeSubmitHandlers() (Line: 52)<br>Drupal\Core\Form\FormSubmitter-&gt;doSubmitForm() (Line: 609)<br>Drupal\Core\Form\FormBuilder-&gt;processForm() (Line: 325)<br>Drupal\Core\Form\FormBuilder-&gt;buildForm() (Line: 73)<br>Drupal\Core\Controller\FormController-&gt;getContentResult()<br>call_user_func_array() (Line: 123)<br>Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber-&gt;Drupal\Core\EventSubscriber\{closure}() (Line: 592)<br>Drupal\Core\Render\Renderer-&gt;executeInRenderContext() (Line: 124)<br>Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber-&gt;wrapControllerExecutionInRenderContext() (Line: 97)<br>Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber-&gt;Drupal\Core\EventSubscriber\{closure}() (Line: 181)<br>Symfony\Component\HttpKernel\HttpKernel-&gt;handleRaw() (Line: 76)<br>Symfony\Component\HttpKernel\HttpKernel-&gt;handle() (Line: 58)<br>Drupal\Core\StackMiddleware\Session-&gt;handle() (Line: 48)<br>Drupal\Core\StackMiddleware\KernelPreHandle-&gt;handle() (Line: 106)<br>Drupal\page_cache\StackMiddleware\PageCache-&gt;pass() (Line: 85)<br>Drupal\page_cache\StackMiddleware\PageCache-&gt;handle() (Line: 48)<br>Drupal\Core\StackMiddleware\ReverseProxyMiddleware-&gt;handle() (Line: 51)<br>Drupal\Core\StackMiddleware\NegotiationMiddleware-&gt;handle() (Line: 51)<br>Drupal\Core\StackMiddleware\StackedHttpKernel-&gt;handle() (Line: 704)<br>Drupal\Core\DrupalKernel-&gt;handle() (Line: 19)</pre><h4 id="summary-steps-reproduce">Steps to reproduce</h4> <h3 id="summary-proposed-resolution">Proposed resolution</h3> <h3 id="summary-remaining-tasks">Remaining tasks</h3> <h3 id="summary-ui-changes">User interface changes</h3> <h3 id="summary-api-changes">API changes</h3> <h3 id="summary-data-model-changes">Data model changes</h3>
issue