Hi there,
in my case it seems that my requests not affected by the method. Can anyone confirm this? I set it to 5 seconds but it will appear in the default 60.
Thank you
this.nativeHttp.setDataSerializer("json");
this.nativeHttp.setRequestTimeout(5);
this.nativeHttp.post(request.url, request.data, { "Content-Type": request.contentType}).then(data => {
let result : HttpResponse = new HttpResponse();
result.statusCode = data.status;
result.data = data.data;
}, error => {
let result : HttpResponse = new HttpResponse();
result.statusCode = error.status;
result.data = error.data;
});