comparison Resources/Configuration.json @ 3165:1fe524e211af

New configuration option: "SaveJobs" to specify whether jobs are stored in the database
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 24 Jan 2019 18:24:13 +0100
parents 94a4f75cc746
children 8ea7c4546c3a
comparison
equal deleted inserted replaced
3164:b79ec21747a1 3165:1fe524e211af
441 // the history as soon as they are completed), which prevents the 441 // the history as soon as they are completed), which prevents the
442 // use of some features of Orthanc (typically, synchronous mode in 442 // use of some features of Orthanc (typically, synchronous mode in
443 // REST API) and should be avoided for non-developers. 443 // REST API) and should be avoided for non-developers.
444 "JobsHistorySize" : 10, 444 "JobsHistorySize" : 10,
445 445
446 // Whether to save the jobs into the Orthanc database. If this
447 // option is set to "true", the pending/running/completed jobs are
448 // automatically reloaded from the database if Orthanc is stopped
449 // then restarted (except if the "--no-jobs" command-line argument
450 // is specified). This option should be set to "false" if multiple
451 // Orthanc servers are using the same database (e.g. if PostgreSQL
452 // or MariaDB/MySQL is used).
453 "SaveJobs" : true,
454
446 // Specifies how Orthanc reacts when it receives a DICOM instance 455 // Specifies how Orthanc reacts when it receives a DICOM instance
447 // whose SOPInstanceUID is already stored. If set to "true", the new 456 // whose SOPInstanceUID is already stored. If set to "true", the new
448 // instance replaces the old one. If set to "false", the new 457 // instance replaces the old one. If set to "false", the new
449 // instance is discarded and the old one is kept. Up to Orthanc 458 // instance is discarded and the old one is kept. Up to Orthanc
450 // 1.4.1, the implicit behavior corresponded to "false". 459 // 1.4.1, the implicit behavior corresponded to "false".