[google-appengine] Re: The API call urlfetch.Fetch() was cancelled because the overall HTTP request deadline was reached

2018-05-02 Thread 'George (Cloud Platform Support)' via Google App Engine
Is your jersey client library fully compatible with Java 8? Your code does not seem to take into consideration the case of a request being delayed, and does not set a fetch deadline, in a way similar to urlfetch.set_default_fetch_deadline(). You should examine your app's behavior accordingly, a

[google-appengine] Re: The API call urlfetch.Fetch() was cancelled because the overall HTTP request deadline was reached

2018-05-02 Thread Deepak Kumar
For initial some time (when app is deployed) it works fine and after some time it's throwing this error. I am using jersey client 2.21 libraries. -- sample code -- Client client = ClientBuilder.newClient(); client.register(GZipEncoder.class); WebTarget webTarget = client

[google-appengine] Re: The API call urlfetch.Fetch() was cancelled because the overall HTTP request deadline was reached

2018-05-02 Thread Deepak Kumar
For initial some time (when app is deployed) it works fine and after some time it's throwing this error. I am using jersey client 2.21 libraries. -- sample code -- Client client = ClientBuilder.newClient(); client.register(GZipEncoder.class); WebTarget webTarget = client

[google-appengine] Re: The API call urlfetch.Fetch() was cancelled because the overall HTTP request deadline was reached

2018-05-02 Thread 'George (Cloud Platform Support)' via Google App Engine
How often is this call made? Does this happen for a certain URL in particular, or for any URL? Details on the code initiating the URLFetch request are needed. You can send us these details via private email, using the drop-down menu of the "reply" button, at the top right of the editing window.