You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.
Hi,
I have installed conductor. I created a simple workflow having a simple HTTP task to call the end point https://datausa.io/api/data?drilldowns=Nation&measures=Population and executed it on my office laptop. It works properly and I am able to get an output.
Afterwards, when I connect to my corporate VPN or any office WiFi and execute the workflow, it fails. I get following exception trace in logs :
ERROR com.netflix.conductor.contribs.tasks.http.HttpTask [] - Got unexpected http response - uri: https://datausa.io/api/data?drilldowns=Nation&measures=Population, vipAddress: null
org.springframework.web.client.ResourceAccessException: I/O error on GET request for "https://datausa.io/api/data": Connect to datausa.io:443 [datausa.io/104.25.28.69, datausa.io/172.67.96.83, datausa.io/104.25.27.69, datausa.io/2606:4700:20:0:0:0:6819:1c45, datausa.io/2606:4700:20:0:0:0:6819:1b45, datausa.io/2606:4700:20:0:0:0:ac43:6053] failed: connect timed out; nested exception is org.apache.http.conn.ConnectTimeoutException: Connect to datausa.io:443 [datausa.io/104.25.28.69, datausa.io/172.67.96.83, datausa.io/104.25.27.69, datausa.io/2606:4700:20:0:0:0:6819:1c45, datausa.io/2606:4700:20:0:0:0:6819:1b45, datausa.io/2606:4700:20:0:0:0:ac43:6053] failed: connect timed out
at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:746) ~[spring-web-5.2.15.RELEASE.jar!/:5.2.15.RELEASE]
at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:672) ~[spring-web-5.2.15.RELEASE.jar!/:5.2.15.RELEASE]
at org.springframework.web.client.RestTemplate.exchange(RestTemplate.java:581) ~[spring-web-5.2.15.RELEASE.jar!/:5.2.15.RELEASE]
at com.netflix.conductor.contribs.tasks.http.HttpTask.httpCall(HttpTask.java:157) ~[conductor-contribs-3.3.4.jar!/:3.3.4]
at com.netflix.conductor.contribs.tasks.http.HttpTask.start(HttpTask.java:108) ~[conductor-contribs-3.3.4.jar!/:3.3.4]
at com.netflix.conductor.core.execution.AsyncSystemTaskExecutor.execute(AsyncSystemTaskExecutor.java:124) ~[conductor-core-3.3.4.jar!/:3.3.4]
at com.netflix.conductor.core.execution.tasks.SystemTaskWorker.lambda$pollAndExecute$1(SystemTaskWorker.java:132) ~[conductor-core-3.3.4.jar!/:3.3.4]
at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1736) [?:?]
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) [?:?]
Can someone help me out. How should I proceed with this? I need to use conductor for workflow orchestration of internal REST APIs that will require Corporate VPN. Am I missing something in my workflow?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi,
I have installed conductor. I created a simple workflow having a simple HTTP task to call the end point
https://datausa.io/api/data?drilldowns=Nation&measures=Population
and executed it on my office laptop. It works properly and I am able to get an output.Afterwards, when I connect to my corporate VPN or any office WiFi and execute the workflow, it fails. I get following exception trace in logs :
Can someone help me out. How should I proceed with this? I need to use conductor for workflow orchestration of internal REST APIs that will require Corporate VPN. Am I missing something in my workflow?
Beta Was this translation helpful? Give feedback.
All reactions