修改配置文件
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
4c4d19b0d6
commit
6f8b88422b
|
@ -26,7 +26,7 @@
|
||||||
"DicomSCPServiceConfig": {
|
"DicomSCPServiceConfig": {
|
||||||
"CalledAEList": [
|
"CalledAEList": [
|
||||||
"STORESCP",
|
"STORESCP",
|
||||||
"Value1",
|
"HIRAE",
|
||||||
"Value2",
|
"Value2",
|
||||||
"Value3"
|
"Value3"
|
||||||
],
|
],
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
"DicomSCPServiceConfig": {
|
"DicomSCPServiceConfig": {
|
||||||
"CalledAEList": [
|
"CalledAEList": [
|
||||||
"STORESCP",
|
"STORESCP",
|
||||||
"Value1",
|
"HIRAE",
|
||||||
"Value2",
|
"Value2",
|
||||||
"Value3"
|
"Value3"
|
||||||
],
|
],
|
||||||
|
|
|
@ -3157,6 +3157,11 @@ namespace IRaCIS.Application.Services
|
||||||
_logger.LogError($" Cmove Pacs 状态返回失败: {response.SOPClassUID.ToJsonNotIgnoreNull()}");
|
_logger.LogError($" Cmove Pacs 状态返回失败: {response.SOPClassUID.ToJsonNotIgnoreNull()}");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 判断是否传输完成或中断,执行缓存清理
|
||||||
|
if (response.Status.State == DicomState.Success && response.Remaining == 0)
|
||||||
|
{
|
||||||
|
_fusionCache.Set<string?>(CacheKeys.CmoveStudyId(req.Dataset.GetString(DicomTag.StudyInstanceUID)), null, TimeSpan.FromSeconds(1));
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
var latestInstanceList = await _scpInstanceRepository.Where(t => inCommand.StudyInstanceUIDList.Contains(t.StudyInstanceUid))
|
var latestInstanceList = await _scpInstanceRepository.Where(t => inCommand.StudyInstanceUIDList.Contains(t.StudyInstanceUid))
|
||||||
|
|
Loading…
Reference in New Issue