0

I would like to debug my Flask API. The API requires a JSON payload from a user. I am supplying that payload through Postman.I am using PyCharms debugger and am able to debug for a few seconds before Postman times out and the connection is lost and I must start again. I have already set request timeout to infinity Postman Response How can I maintain the connection in order to continue debugging?

Josh Zwiebel
  • 883
  • 1
  • 9
  • 30

1 Answers1

1

The timeout time for a given Flask app can be edited in it's given config property. Setting 'timeout' to the number of seconds you need before the request time's out will solve the issue.

Josh Zwiebel
  • 883
  • 1
  • 9
  • 30