File tree 2 files changed +3
-0
lines changed
StabilityMatrix.Core/Models/Packages
2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2
11
11
- Fixed potential memory leak of transient controls (Inference Prompt and Output Image Viewer) not being garbage collected due to event subscriptions
12
12
- Fixed Batch Count seeds not being recorded properly in Inference projects and image metadata
13
13
- Fixed [ #795 ] ( https://github.com/LykosAI/StabilityMatrix/issues/795 ) - SwarmUI launch args not working properly
14
+ - Fixed [ #745 ] ( https://github.com/LykosAI/StabilityMatrix/issues/745 ) - not passing Environment Variables to SwarmUI
14
15
### Supporters
15
16
#### Visionaries
16
17
- Shoutout to our Visionary-tier Patreon supporter, ** Scopp Mcdee** ! Huge thanks for your continued support!
Original file line number Diff line number Diff line change 3
3
using FreneticUtilities . FreneticDataSyntax ;
4
4
using StabilityMatrix . Core . Attributes ;
5
5
using StabilityMatrix . Core . Exceptions ;
6
+ using StabilityMatrix . Core . Extensions ;
6
7
using StabilityMatrix . Core . Helper ;
7
8
using StabilityMatrix . Core . Helper . Cache ;
8
9
using StabilityMatrix . Core . Models . FDS ;
@@ -254,6 +255,7 @@ public override async Task RunPackage(
254
255
[ "ASPNETCORE_ENVIRONMENT" ] = "Production" ,
255
256
[ "ASPNETCORE_URLS" ] = "http://*:7801"
256
257
} ;
258
+ aspEnvVars . Update ( settingsManager . Settings . EnvironmentVariables ) ;
257
259
258
260
void HandleConsoleOutput ( ProcessOutput s )
259
261
{
You can’t perform that action at this time.
0 commit comments