How to handle etimedout error on this call ?
var remotePath = \"myremoteurltocopy\"
var localStream = fs.createWriteStream(\"myfil\");;
var out = r
In case if you are using node js, then this could be the possible solution
const express = require("express");
const app = express();
const server = app.listen(8080);
server.keepAliveTimeout = 61 * 1000;
https://medium.com/hk01-tech/running-eks-in-production-for-2-years-the-kubernetes-journey-at-hk01-68130e603d76