Skip to content

Commit 19d8a73

Browse files
Don't report supervisor_check_ready unless the FF is enabled (#20292)
1 parent 6f87a7a commit 19d8a73

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

components/supervisor/frontend/src/ide/supervisor-service-client.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,10 @@ export class SupervisorServiceClient {
8181

8282
// track whenever a) we are done, or b) we try to connect (again)
8383
const trackCheckReady = (p: { aborted?: boolean }, err?: any): void => {
84+
if (!this.serviceClient.isCheckReadyRetryEnabled()) {
85+
return;
86+
}
87+
8488
const props: Record<string, string> = {
8589
component: "supervisor-frontend",
8690
instanceId: this.serviceClient.latestInfo?.instanceId ?? "",

0 commit comments

Comments
 (0)