Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions cmd/invoke.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ func runInvoke(cmd *cobra.Command, args []string) error {
cleanupStarted.Store(true)
defer close(cleanupDone)
pterm.Warning.Println("Invocation cancelled...cleaning up...")
if err := client.Invocations.DeleteBrowsers(context.Background(), resp.ID, option.WithRequestTimeout(30*time.Second)); err != nil {
pterm.Error.Printf("Failed to cancel invocation: %v\n", err)
}
if _, err := client.Invocations.Update(
context.Background(),
resp.ID,
Expand Down