Browse Source

Merge pull request #548 from colinin/support-webhook-ui

fix: dynamic array size
pull/580/head
yx lin 4 years ago
committed by GitHub
parent
commit
29ce64ffff
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/src/LINGYUN.MicroService.Internal.ApiGateway/Ocelot/Configuration/Repository/DiskFileConfigurationAggragatorRepository.cs

2
gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/src/LINGYUN.MicroService.Internal.ApiGateway/Ocelot/Configuration/Repository/DiskFileConfigurationAggragatorRepository.cs

@ -35,7 +35,7 @@ namespace LINGYUN.MicroService.Internal.ApiGateway.Ocelot.Configuration.Reposito
_environmentFilePath = Path.Combine(
_hostEnvironment.ContentRootPath,
$"ocelot.{hostingEnvironment.EnvironmentName ?? "Development"}.json");
_ocelotFiles = new string[7]
_ocelotFiles = new string[9]
{
"ocelot.global.json",
"ocelot.backendadmin.json",

Loading…
Cancel
Save