Skip to content

Commit 656c95b

Browse files
committed
fix(client) disable API health-checks
Semi-resurrection of #1054 I got logs of a call where this happened again and it doesn't make any sense. This PR disables the action but leaves the check in, so we can still see it in the logs when we dig into issues.
1 parent 96e3309 commit 656c95b

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

spot-client/src/spot-tv/ui/components/meeting-frame/AbstractMeetingFrame.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -143,10 +143,11 @@ export default class AbstractMeetingFrame extends React.Component {
143143
_onApiHealthCheckError(reason) {
144144
logger.error('api health check failed', { reason });
145145

146-
this._onMeetingLeave({
147-
errorCode: reason,
148-
error: 'appEvents.meetingConnectionLost'
149-
});
146+
// TODO: monitor logs and figure out why we get this failure when things are ok (well, are they?!).
147+
// this._onMeetingLeave({
148+
// errorCode: reason,
149+
// error: 'appEvents.meetingConnectionLost'
150+
// });
150151
}
151152

152153
/**

0 commit comments

Comments
 (0)