Skip to content

Commit f0239bb

Browse files
authored
Merge pull request LykosAI#1249 from ionite34/backport/main/pr-1248
[dev to main] backport: Fixed ComfyUI-Zluda not inheriting --enable-manager from the base ComfyUI launch options… (1248)
2 parents d0377b9 + 6287bba commit f0239bb

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2
1616
- Fixed SwarmUI user settings (theme, output format, server configuration, etc.) and any user-added backend entries being overwritten when the install flow ran over an existing install — `Settings.fds` and `Backends.fds` are now merged with their existing contents instead of being rewritten from a stale template
1717
- Fixed pip requirements handling for environment-marker dependencies - thanks to @NeuralFault!
1818
- Fixed [#1608](https://github.com/LykosAI/StabilityMatrix/issues/1608) - Crash when cdn fetch fails due to error notification not being shown on UI Thread - thanks to @NeuralFault!
19+
- Fixed ComfyUI-Zluda inheriting `--enable-manager` from the base ComfyUI launch options, which blocked the bundled custom-node manager from initializing - thanks to @NeuralFault!
1920
### Supporters
2021
#### 🌟 Visionaries
2122
Heaps of gratitude to our Visionaries — **Waterclouds**, **bluepopsicle**, **Ibixat**, **Droolguy**, **snotty**, **LG**, and **whudunit** — for sticking with us release after release. Your encouragement, your patience while we chase down those last bugs, and the sheer fact of you being here keeps us showing up at the keyboard. We're so glad you're part of this little corner of the internet with us. And big warm welcomes again to our newest Visionaries **MrMxyzptlk12836**, **Psilocyfer18731**, **KalAbaddon**, **RustCupcake**, and **moon_milky2843** — make yourselves at home, you're among friends! 💛

StabilityMatrix.Core/Models/Packages/ComfyZluda.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,11 @@ public override List<LaunchOptionDefinition> LaunchOptions
102102
},
103103
};
104104

105-
options.AddRange(base.LaunchOptions.Where(x => x.Name != "Cross Attention Method"));
105+
options.AddRange(
106+
base.LaunchOptions.Where(x =>
107+
x.Name != "Cross Attention Method" && !x.Options.Contains("--enable-manager")
108+
)
109+
);
106110
return options;
107111
}
108112
}

0 commit comments

Comments
 (0)