You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Once a deployment triggered (e.g. via await MyDeployer.deploy()), there is no good way to stop it. The Deploy App hacked cancellation support by bricking the multiProvider passed into the deployer but it's not super reliable. The proper solution would be to have the deployers check for cancellation requests in between read/write calls and bail if needed.
AbortController may help with this.
The text was updated successfully, but these errors were encountered:
Problem
Once a deployment triggered (e.g. via
await MyDeployer.deploy()
), there is no good way to stop it. The Deploy App hacked cancellation support by bricking the multiProvider passed into the deployer but it's not super reliable. The proper solution would be to have the deployers check for cancellation requests in between read/write calls and bail if needed.AbortController may help with this.
The text was updated successfully, but these errors were encountered: