MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / installSupervisedAndWait

Function installSupervisedAndWait

apps/desktop/src/main/index.ts:249–262  ·  view source on GitHub ↗
(reason: string)

Source from the content-addressed store, hash-verified

247};
248
249const installSupervisedAndWait = async (reason: string): Promise<SidecarConnection | null> => {
250 const settings = getServerSettings();
251 // oxlint-disable-next-line executor/no-try-catch-or-throw -- boundary: install failure falls back to managed-spawn so the app still launches
252 try {
253 await installSupervisedService({
254 port: settings.port,
255 dataDir: DESKTOP_DATA_DIR,
256 });
257 } catch (error) {
258 log.warn(`Failed to install supervised service after ${reason}; using managed sidecar`, error);
259 return null;
260 }
261 return waitForSupervisedAttach(15_000, { port: settings.port });
262};
263
264/**
265 * Resolve a connection to the OS-supervised daemon, installing it on first run

Callers 1

Calls 4

getServerSettingsFunction · 0.90
installSupervisedServiceFunction · 0.90
waitForSupervisedAttachFunction · 0.85
warnMethod · 0.80

Tested by

no test coverage detected