This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Changes" : [ | |
{ | |
"ChangeType" : "NewInstance", | |
"Date" : "20190615T041429", | |
"ID" : "0c7a4f9b-e037cf9a-d8ef9386-db692e07-7324e87f", | |
"Path" : "/instances/0c7a4f9b-e037cf9a-d8ef9386-db692e07-7324e87f", | |
"ResourceType" : "Instance", | |
"Seq" : 1 | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WARNING:urllib3.connectionpool:Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection broken: IncompleteRead(138139140 bytes read)', IncompleteRead(138139140 bytes read))': //api/v1.2/patientscans/8f9fe590-0b580377-0cd1bb3a-af0ac9e0-9ccf6d5b | |
WARNING:urllib3.connectionpool:Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection broken: IncompleteRead(11179229 bytes read)', IncompleteRead(11179229 bytes read))': //api/v1.2/patientscans/8f9fe590-0b580377-0cd1bb3a-af0ac9e0-9ccf6d5b | |
WARNING:urllib3.connectionpool:Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection broken: IncompleteRead(7737398 bytes read)', IncompleteRead(7737398 bytes read))': //api/v1.2/patientscans/8f9fe590-0b580377-0cd1bb3a-af0ac9e0-9ccf6d5b | |
ERROR | |
=============================================================== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Streaming: https://blog.stephencleary.com/2016/11/streaming-zip-on-aspnet-core.html | |
* Queue: https://robertwray.co.uk/blog/wrapping-concurrentqueue-t-to-make-it-eventful | |
* | |
*/ | |
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.IO; |