I have a curl request that works perfectly from the cmd line
curl "user:pass@server-ip:port/path/to/endpoint"
but when I try it using dbr.http.get on the same server
select 'dbr.http.get',"user:pass@server-ip:port/path/to/endpoint";
select 1;
It just hangs and times out. The server in question is in a different VPC in AWS - but I thought that if I have access from cmd line it should also work in a report.
Is there any way to debug this?
I tried dbr.http.get to other endpoints within our setup and it works fine.