dicom / ruby-dicom

Library for reading, editing and writing DICOM files, as well as handling DICOM network communication. Written in the Ruby language.
http://dicom.rubyforge.org/
GNU General Public License v3.0
178 stars 68 forks source link

Larger DICOM Files are not uploading from local to server #70

Closed ghost closed 7 years ago

ghost commented 7 years ago

Only 50MB's file is uploading but larger files are not uploading.

I am using this code

let fileUploaded = Async.runSync(function(done) { 
    let url =  `curl -X POST http://localhost/peers/peer2/store -d *********************`;
    console.log(url);
    new Fiber(function() {
    childProcess.exec(url, function (error, stdout, stderr) {
         if (error) {
                done(error);
            } else {
                done(null, 'File uploded')
            }
    });
   }).run();
});
dicom commented 7 years ago

Sorry, this does not seem like a ruby-dicom error.