Browse Source

fix(appsettings): fix the spelling of configuration items

pull/346/head
cKey 4 years ago
parent
commit
c12ee302da
  1. 5
      aspnet-core/services/account/AuthServer.Host/appsettings.Development.json
  2. 2
      aspnet-core/services/admin/LINGYUN.Abp.BackendAdmin.HttpApi.Host/appsettings.Development.json
  3. 2
      aspnet-core/services/localization/LINGYUN.Abp.LocalizationManagement.HttpApi.Host/appsettings.Development.json
  4. 3
      aspnet-core/services/messages/LINGYUN.Abp.MessageService.HttpApi.Host/appsettings.Development.json
  5. 2
      aspnet-core/services/platform/LINGYUN.Platform.HttpApi.Host/appsettings.Development.json

5
aspnet-core/services/account/AuthServer.Host/appsettings.Development.json

@ -35,9 +35,8 @@
}
},
"Redis": {
"Configuration": "localhost",
"InstanceName": "LINGYUN.Abp.Application",
"DefaultDatabase": 10
"Configuration": "localhost,defaultDatabase=10",
"InstanceName": "LINGYUN.Abp.Application"
},
"AuthServer": {
"Authority": "http://localhost:44385/",

2
aspnet-core/services/admin/LINGYUN.Abp.BackendAdmin.HttpApi.Host/appsettings.Development.json

@ -20,7 +20,7 @@
},
"CAP": {
"EventBus": {
"DefaultGroup": "BackendAdmin",
"DefaultGroupName": "BackendAdmin",
"Version": "v1",
"FailedRetryInterval": 300,
"FailedRetryCount": 10

2
aspnet-core/services/localization/LINGYUN.Abp.LocalizationManagement.HttpApi.Host/appsettings.Development.json

@ -11,7 +11,7 @@
},
"CAP": {
"EventBus": {
"DefaultGroup": "Localization-Management",
"DefaultGroupName": "Localization-Management",
"Version": "v1",
"FailedRetryInterval": 300,
"FailedRetryCount": 10

3
aspnet-core/services/messages/LINGYUN.Abp.MessageService.HttpApi.Host/appsettings.Development.json

@ -17,6 +17,7 @@
"ConnectionStrings": {
"Default": "Server=localhost;Database=Messages;User Id=colin;Password=123456",
"MessageService": "Server=localhost;Database=Messages;User Id=colin;Password=123456",
"AbpIdentity": "Server=localhost;Database=Messages;User Id=colin;Password=123456",
"AbpTenantManagement": "Server=localhost;Database=Platform;User Id=colin;Password=123456",
"AbpSettingManagement": "Server=localhost;Database=Platform;User Id=colin;Password=123456",
"AbpPermissionManagement": "Server=localhost;Database=Platform;User Id=colin;Password=123456",
@ -48,7 +49,7 @@
},
"CAP": {
"EventBus": {
"DefaultGroup": "MessageService",
"DefaultGroupName": "MessageService",
"Version": "v1",
"FailedRetryInterval": 300,
"FailedRetryCount": 10

2
aspnet-core/services/platform/LINGYUN.Platform.HttpApi.Host/appsettings.Development.json

@ -42,7 +42,7 @@
},
"CAP": {
"EventBus": {
"DefaultGroup": "Platform",
"DefaultGroupName": "Platform",
"Version": "v1",
"FailedRetryInterval": 300,
"FailedRetryCount": 10

Loading…
Cancel
Save