Skip to content

Commit 96e0f1f

Browse files
committed
Fixed ComfyUI-Zluda not inheriting --enable-manager from the base ComfyUI launch options, which was breaking the bundled custom-node manager. Thanks to @NeuralFault (LykosAI#1628)
1 parent 1c240b2 commit 96e0f1f

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

2021
## v2.16.0-dev.3
2122
### Added

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)