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

Function showPortInUseDialog

apps/desktop/src/main/index.ts:505–514  ·  view source on GitHub ↗
(port: number)

Source from the content-addressed store, hash-verified

503};
504
505const showPortInUseDialog = async (port: number) => {
506 await dialog.showMessageBox({
507 type: "error",
508 title: "Executor port in use",
509 message: `Port ${port} is already taken.`,
510 detail:
511 "Another process is listening on that port. Quit it (or change the desktop server's port in Settings) and relaunch Executor.",
512 buttons: ["OK"],
513 });
514};
515
516// Last non-port-conflict sidecar startup failure, surfaced by boot() in a
517// user-facing dialog instead of letting the app vanish without a window.

Callers 1

startWithCurrentSettingsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected