comfyui-mcp 0.50.35 → 0.50.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/orchestrator/index.js +6 -2
- package/dist/orchestrator/index.js.map +1 -1
- package/dist/services/model-resolver.js +7 -1
- package/dist/services/model-resolver.js.map +1 -1
- package/dist/tools/model-management.js +13 -1
- package/dist/tools/model-management.js.map +1 -1
- package/package.json +1 -1
- package/scripts/smoke-install.mjs +83 -0
|
@@ -5580,8 +5580,12 @@ export async function runPanelOrchestrator() {
|
|
|
5580
5580
|
//
|
|
5581
5581
|
// Deferral, not cancellation: the update check still runs and the restart
|
|
5582
5582
|
// stays armed, so it fires as soon as the tunnel goes away. The cost is
|
|
5583
|
-
// that a tunnel left up indefinitely postpones updates indefinitely,
|
|
5584
|
-
// is
|
|
5583
|
+
// that a tunnel left up indefinitely postpones updates indefinitely, so it
|
|
5584
|
+
// is DISCLOSED — in pair-durability's tunnel note, which the panel shows at
|
|
5585
|
+
// pair time. Deliberately not announced from here: this is a predicate the
|
|
5586
|
+
// restarter polls, and emitting from it would either fire repeatedly or
|
|
5587
|
+
// need its own state to suppress itself. Pair time is also where the user
|
|
5588
|
+
// is actually looking (#1077: an orchestrator log may be unreachable).
|
|
5585
5589
|
!tunnelPairingLive(),
|
|
5586
5590
|
announce: (text) => void bridge.push({ type: "say", text }),
|
|
5587
5591
|
teardown: teardownCore,
|