I have two apis written using Falcon. First API returns some JSON response. Second API uses First API to get its response. When I independently run First API, I get response but when I use second API, I get a read timeout exception when this second API uses First API call. Any idea ?
localhost:port/firstapi/{123} - Works fine independently.
when loaclhost:port/secondapi uses localhost:port/firstapi/{123}. I get read time out at localhost:port/firstapi/{123}
PS : The two routes are registered in firstapi.py FirstAPIResource class.