“Debugging connection was closed: Render process was gone”, when trying to download a 7gb from cdn
“Debugging connection was closed: Render process was gone”, when trying to download a 7gb from cdn We are trying to download a 7 GB from CDN using JSZip.js. The chrome browser suddenly seems to close the connection when the download reaches 3.5gb every time. The approximate time is around 15 mins. Is there a way we increase the tolerant time to 1 hr say? $("#downloadJSZip").on('click', function () { var result = [{ "cdn": "url....", "filename": "7.84 gb.zip", "size": 4194304, "path": "7.84 gb" }]; var Promise = window.Promise; if (!Promise) { Promise = JSZip.external.Promise; } function urlToPromise(url) { return new Promise(function(resolve, reject) { JSZipUtils.getBinaryContent(url, function (err, data) { ...