comfyui-mcp 0.51.46 → 0.51.47
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.
|
@@ -3494,6 +3494,37 @@ async function unreadableOrHealed(ctx, before, detail) {
|
|
|
3494
3494
|
function panelTooOldNote(ctx) {
|
|
3495
3495
|
try {
|
|
3496
3496
|
const v = ctx.bridge?.panelTooOldForReplyUuid?.(ctx.tabId);
|
|
3497
|
+
// #1560 — A PANEL TOO OLD TO HELP IS ALSO TOO OLD TO SAY SO.
|
|
3498
|
+
//
|
|
3499
|
+
// The note below needs an advertised version, and `panel_version` has only
|
|
3500
|
+
// ridden the hello since panel v0.11.83. So the panels most likely to be
|
|
3501
|
+
// causing this deadlock — anything below 0.11.45 — cannot report it, and the
|
|
3502
|
+
// reporter of #1560 (on 0.11.37, after two Manager self-updates of the pack
|
|
3503
|
+
// crashed) got a bare "the panel did not answer" with nothing to act on.
|
|
3504
|
+
//
|
|
3505
|
+
// Deliberately WEAKER than the version case, and weaker still after review: an
|
|
3506
|
+
// absent version proves only "below 0.11.83", NOT "below the minimum". Panels
|
|
3507
|
+
// in 0.11.45–0.11.82 publish the reply uuid and simply predate version
|
|
3508
|
+
// advertisement, so this must read as SOMETHING TO CHECK and never as a finding
|
|
3509
|
+
// — naming a cause that is not theirs is the failure this whole cluster exists
|
|
3510
|
+
// to avoid.
|
|
3511
|
+
if (v?.neverAdvertised) {
|
|
3512
|
+
return (`
|
|
3513
|
+
|
|
3514
|
+
WORTH CHECKING — THE PANEL'S VERSION IS UNKNOWN HERE: this session's panel has never ` +
|
|
3515
|
+
`reported its version, and panels have advertised one on connect since 0.11.83, so ` +
|
|
3516
|
+
`this one is older than that. That does NOT by itself mean it is too old: a panel ` +
|
|
3517
|
+
`reports the new workflow's identity ON THE REPLY from ${v.needed} onwards, and ` +
|
|
3518
|
+
`0.11.45–0.11.82 do that while still not advertising a version. But if it IS below ` +
|
|
3519
|
+
`${v.needed}, that is the whole cause of this failure rather than anything about this ` +
|
|
3520
|
+
`workflow — on ${v.needed}+ the command that re-pointed the canvas repairs the fence ` +
|
|
3521
|
+
`from its own reply and never makes the read that just failed. ` +
|
|
3522
|
+
`Find out with install_comfyui (action:"panel", panel_action:"status"). If it is ` +
|
|
3523
|
+
`older, update with install_comfyui (action:"panel", panel_action:"sync"), restart ` +
|
|
3524
|
+
`ComfyUI, and HARD-REFRESH the browser tab (Ctrl+Shift+R) — a pack update that ` +
|
|
3525
|
+
`ComfyUI-Manager reported as FAILED leaves the old panel JS running in the open tab, ` +
|
|
3526
|
+
`so a restart alone does not pick it up.`);
|
|
3527
|
+
}
|
|
3497
3528
|
if (!v?.tooOld)
|
|
3498
3529
|
return "";
|
|
3499
3530
|
return (`
|