We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
supervisor_check_ready
1 parent 6f87a7a commit 19d8a73Copy full SHA for 19d8a73
components/supervisor/frontend/src/ide/supervisor-service-client.ts
@@ -81,6 +81,10 @@ export class SupervisorServiceClient {
81
82
// track whenever a) we are done, or b) we try to connect (again)
83
const trackCheckReady = (p: { aborted?: boolean }, err?: any): void => {
84
+ if (!this.serviceClient.isCheckReadyRetryEnabled()) {
85
+ return;
86
+ }
87
+
88
const props: Record<string, string> = {
89
component: "supervisor-frontend",
90
instanceId: this.serviceClient.latestInfo?.instanceId ?? "",
0 commit comments