Mercurial > hg > orthanc
comparison Resources/Configuration.json @ 3162:94a4f75cc746
Fix issue #119 (/patients/.../archive returns a 500 when JobsHistorySize is 0)
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 24 Jan 2019 16:47:05 +0100 |
parents | 5a3b961e9524 |
children | 1fe524e211af |
comparison
equal
deleted
inserted
replaced
3161:5cf29046c159 | 3162:94a4f75cc746 |
---|---|
436 | 436 |
437 // Maximum number of completed jobs that are kept in memory. A | 437 // Maximum number of completed jobs that are kept in memory. A |
438 // processing job is considered as complete once it is tagged as | 438 // processing job is considered as complete once it is tagged as |
439 // "Success" or "Failure". Since Orthanc 1.5.0, a value of "0" | 439 // "Success" or "Failure". Since Orthanc 1.5.0, a value of "0" |
440 // indicates to keep no job in memory (i.e. jobs are removed from | 440 // indicates to keep no job in memory (i.e. jobs are removed from |
441 // the history as soon as they are completed). | 441 // the history as soon as they are completed), which prevents the |
442 // use of some features of Orthanc (typically, synchronous mode in | |
443 // REST API) and should be avoided for non-developers. | |
442 "JobsHistorySize" : 10, | 444 "JobsHistorySize" : 10, |
443 | 445 |
444 // Specifies how Orthanc reacts when it receives a DICOM instance | 446 // Specifies how Orthanc reacts when it receives a DICOM instance |
445 // whose SOPInstanceUID is already stored. If set to "true", the new | 447 // whose SOPInstanceUID is already stored. If set to "true", the new |
446 // instance replaces the old one. If set to "false", the new | 448 // instance replaces the old one. If set to "false", the new |