We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5a2667 commit 2653a5cCopy full SHA for 2653a5c
1 file changed
src/plugins/setup.ts
@@ -244,6 +244,18 @@ export default createPlugin(
244
await minDelay(pullImageProcess);
245
}
246
247
+ if (cancellationToken.isCancellationRequested) {
248
+ telemetry.track({
249
+ name: "setup_ended",
250
+ payload: {
251
+ namespace: "onboarding",
252
+ steps: [1, 2, 3],
253
+ status: "CANCELLED",
254
+ },
255
+ });
256
+ return;
257
+ }
258
+
259
/////////////////////////////////////////////////////////////////////
260
if (localStackStatusTracker.status() === "running") {
261
window
0 commit comments