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
With the recent change in #2567 which changed Zarf to cancel context instead of running os.exit(1) after the first SIGINT, we need to change functions to use context and return an err up all the way up the stack when context is cancelled.
Note: A second sigint will always `os.exit(1)
The following is a list of functionality that needs context, but there are likely several more:
File downloads on create
During data injections on deploy
Image pull on create - this cannot be properly fixed until we switch from using crane, perhaps to ORAS which implements context, or crane implements context
helm install / upgrade
The text was updated successfully, but these errors were encountered:
With the recent change in #2567 which changed Zarf to cancel context instead of running
os.exit(1)
after the first SIGINT, we need to change functions to use context and return an err up all the way up the stack when context is cancelled.Note: A second sigint will always `os.exit(1)
The following is a list of functionality that needs context, but there are likely several more:
The text was updated successfully, but these errors were encountered: