修改配置文件
continuous-integration/drone/push Build is passing Details

Test_HIR_Net8
hang 2025-11-24 10:35:52 +08:00
parent d042be7828
commit 32ee818be8
4 changed files with 16 additions and 4 deletions

View File

@ -20,6 +20,16 @@
"environmentVariables": { "environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Uat_HIR_SCP" "ASPNETCORE_ENVIRONMENT": "Uat_HIR_SCP"
} }
},
"Prod_HIR_SCP": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"launchUrl": "swagger",
"applicationUrl": "http://localhost:6200",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Prod_HIR_SCP"
}
} }
} }
} }

View File

@ -318,7 +318,7 @@ namespace IRaCIS.Core.SCP.Service
var _studyRepository = _serviceProvider.GetService<IRepository<SCPStudy>>(); var _studyRepository = _serviceProvider.GetService<IRepository<SCPStudy>>();
if (exception == null || _releasedNormally == false) if (exception != null || _releasedNormally == false)
{ {
//客户端断网,恢复后,也是没有异常的,估计是超时走了关闭 //客户端断网,恢复后,也是没有异常的,估计是超时走了关闭

View File

@ -10,7 +10,7 @@
"ObjectStoreUse": "MinIO", "ObjectStoreUse": "MinIO",
"MinIO": { "MinIO": {
"EndPoint": "47.102.87.18", "EndPoint": "47.102.87.18",
"Port": "9001", "Port": "9000",
"UseSSL": false, "UseSSL": false,
"AccessKeyId": "fbStsVYCIPKHQneeqMwD", "AccessKeyId": "fbStsVYCIPKHQneeqMwD",
"SecretAccessKey": "TzgvyA3zGXMUnpilJNUlyMYHfosl1hBMl6lxPmjy", "SecretAccessKey": "TzgvyA3zGXMUnpilJNUlyMYHfosl1hBMl6lxPmjy",
@ -20,8 +20,8 @@
}, },
"ConnectionStrings": { "ConnectionStrings": {
"RemoteNew": "Server=mssql,1433;Database=HIR_Prod;User ID=sa;Password=xc_123456;TrustServerCertificate=true", "RemoteNew": "Server=47.102.87.183,1434;Database=HIR_Prod;User ID=sa;Password=xc_123456;TrustServerCertificate=true",
"Hangfire": "Server=mssql,1433;Database=HIR_Prod_Hangfire;User ID=sa;Password=xc_123456;TrustServerCertificate=true" "Hangfire": "Server=47.102.87.183,1434;Database=HIR_Prod_Hangfire;User ID=sa;Password=xc_123456;TrustServerCertificate=true"
}, },
"DicomSCPServiceConfig": { "DicomSCPServiceConfig": {
"IsSupportThirdService": true, "IsSupportThirdService": true,

View File

@ -1218,6 +1218,8 @@ namespace IRaCIS.Application.Contracts
public string StudyInstanceUid { get; set; } public string StudyInstanceUid { get; set; }
public string StudyDIRPath { get; set; } public string StudyDIRPath { get; set; }
public List<string> ModalityList => SeriesList.Select(t => t.Modality).ToList();
public List<DownloadDicomSeriesDto> SeriesList { get; set; } public List<DownloadDicomSeriesDto> SeriesList { get; set; }
} }