Order placement failed

ChandiniM
2023-02-06 12:00:12.623 INFO Order placement failed: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer'))

Hi,

Order placement didn't go through. I want to know the reason for the failure. How to handle such exceptions in the future.

Regards,
Chandini
  • rakeshr
    The issue should be caused because of your local network connection or firewall settings. You can change the network and inspect it.
    You can handle connection errors as below:
    try:
    .....
    except ConectionResetError:
    # Re-try, etc
Sign In or Register to comment.