comparison Resources/Configuration.json @ 2825:8aa6aef11b70

New configuration option "OverwriteInstances" to choose how duplicate SOPInstanceUID are handled
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 19 Sep 2018 15:24:01 +0200
parents dc7330089736
children 9d08edde614b
comparison
equal deleted inserted replaced
2824:0e1b79bc4a2d 2825:8aa6aef11b70
387 // "2001,5f" : [ "SQ", "StackSequence", 1, 1, "Philips Imaging DD 001" ] 387 // "2001,5f" : [ "SQ", "StackSequence", 1, 1, "Philips Imaging DD 001" ]
388 }, 388 },
389 389
390 // Whether to run DICOM C-Move operations synchronously. If set to 390 // Whether to run DICOM C-Move operations synchronously. If set to
391 // "false" (the default), each incoming C-Move request results in 391 // "false" (the default), each incoming C-Move request results in
392 // creating a new background job. Until Orthanc 1.3.2, the default 392 // creating a new background job. Up to Orthanc 1.3.2, the implicit
393 // behavior was to use synchronous C-Move. 393 // behavior was to use synchronous C-Move.
394 "SynchronousCMove" : false, 394 "SynchronousCMove" : false,
395 395
396 // Maximum number of completed jobs that are kept in memory. A 396 // Maximum number of completed jobs that are kept in memory. A
397 // processing job is considered as complete once it is tagged as 397 // processing job is considered as complete once it is tagged as
398 // "Success" or "Failure". 398 // "Success" or "Failure".
399 "JobsHistorySize" : 10 399 "JobsHistorySize" : 10,
400
401 // Specifies how Orthanc reacts when it receives a DICOM instance
402 // whose SOPInstanceUID is already stored. If set to "true", the new
403 // instance replaces the old one. If set to "false", the new
404 // instance is discarded and the old one is kept. Up to Orthanc
405 // 1.4.1, the implicit behavior corresponded to "false".
406 "OverwriteInstances" : false
400 } 407 }