Browse Source
Merge pull request #346 from colinin/4.4
fix(appsettings): fix the spelling of configuration items
pull/364/head
yx lin
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with
7 additions and
7 deletions
-
aspnet-core/services/account/AuthServer.Host/appsettings.Development.json
-
aspnet-core/services/admin/LINGYUN.Abp.BackendAdmin.HttpApi.Host/appsettings.Development.json
-
aspnet-core/services/localization/LINGYUN.Abp.LocalizationManagement.HttpApi.Host/appsettings.Development.json
-
aspnet-core/services/messages/LINGYUN.Abp.MessageService.HttpApi.Host/appsettings.Development.json
-
aspnet-core/services/platform/LINGYUN.Platform.HttpApi.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/", |
|
|
|
|
|
|
|
@ -20,7 +20,7 @@ |
|
|
|
}, |
|
|
|
"CAP": { |
|
|
|
"EventBus": { |
|
|
|
"DefaultGroup": "BackendAdmin", |
|
|
|
"DefaultGroupName": "BackendAdmin", |
|
|
|
"Version": "v1", |
|
|
|
"FailedRetryInterval": 300, |
|
|
|
"FailedRetryCount": 10 |
|
|
|
|
|
|
|
@ -11,7 +11,7 @@ |
|
|
|
}, |
|
|
|
"CAP": { |
|
|
|
"EventBus": { |
|
|
|
"DefaultGroup": "Localization-Management", |
|
|
|
"DefaultGroupName": "Localization-Management", |
|
|
|
"Version": "v1", |
|
|
|
"FailedRetryInterval": 300, |
|
|
|
"FailedRetryCount": 10 |
|
|
|
|
|
|
|
@ -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 |
|
|
|
|
|
|
|
@ -42,7 +42,7 @@ |
|
|
|
}, |
|
|
|
"CAP": { |
|
|
|
"EventBus": { |
|
|
|
"DefaultGroup": "Platform", |
|
|
|
"DefaultGroupName": "Platform", |
|
|
|
"Version": "v1", |
|
|
|
"FailedRetryInterval": 300, |
|
|
|
"FailedRetryCount": 10 |
|
|
|
|