forcedotcom / aura

This project is archived, please see the readme for additional resources.
Apache License 2.0
674 stars 333 forks source link

Self-reference in component's extend attribute leads to infinite deployment in Salesforce #180

Closed pkozuchowski closed 5 years ago

pkozuchowski commented 5 years ago

I'm not sure whether it's Aura issue or Salesforce issue, but Salesforce support won't get me anywhere, sorry.

I've set the component as it's own parent by mistake. I did not notice that at first and every time, I had pushed changes to the scratch org, the deployment would stuck indefinitely in pending stage. I figure it may be stuck in loop trying to resolve the top-most parent :)

<!--c:SomeComponent-->
<aura:component extends="c:SomeComponent"
                controller="SomeComponentCtrl"
                implements="force:LightningQuickActionWithoutHeader,force:hasRecordId">

</aura:component>