Stéphan Taljaard
02/14/2022, 11:35 AMInteractive API
tab on the Server page.
I then moved it to my flow. When running the flow, I'm getting ReadTimeoutError: HTTPConnectionPool(host='localhost', port=4200): Read timed out. (read timeout=15)
It's strange to me, because I'm using default port/other settings, and expect it to work since the Interactive API
gives a result almost immediatelyquery GetFlowRunLogs($flow_run_name: String) {
flow_run(where: {name: {_eq: $flow_run_name}}){
logs {
created
level
message
}
}
}
Variables:
{
"flow_run_name": "stalwart-ostrich"
}
query GetFlowRunLogs($flow_run_name: String) {
flow_run(where: {name: {_eq: $flow_run_name}}){
task_runs(order_by: {start_time: asc}){
task{
name
slug
id
}
start_time
logs(order_by: {timestamp: asc}){
level
message
}
}
}
}
But the timeout still happensKevin Kho
02/14/2022, 2:59 PMStéphan Taljaard
02/14/2022, 4:34 PMKevin Kho
02/14/2022, 4:35 PMStéphan Taljaard
02/14/2022, 4:42 PMKevin Kho
02/15/2022, 6:46 PM