Skip to content

Commit

Permalink
[~] Bugfix not added appservers on appzone creation
Browse files Browse the repository at this point in the history
  • Loading branch information
SolidProgramming committed Dec 2, 2024
1 parent 9e34f7b commit 7802dab
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion roles/lib/files/FWO.Services/ModellingAppZoneHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,10 @@ public async Task CreateAppZone(int appId)

appZone.AppServers.AddRange(allAppServers);

int newAppZoneId = await AddAppZoneToDb(appZone);
int newAppZoneId = await AddAppZoneToDb(appZone);
appZone.Id = newAppZoneId;

await AddAppServersToAppZone(appZone.Id, appZone.AppServers);
}
else
{
Expand Down

0 comments on commit 7802dab

Please sign in to comment.