.server_8772.out 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. ----------------------------------------
  2. Exception occurred during processing of request from ('127.0.0.1', 56682)
  3. Traceback (most recent call last):
  4. File "/Users/max_liu/max_liu/company/Agent/examples/mode_workflow/server.py", line 301, in do_GET
  5. self._json(_dashboard())
  6. ~~~~~~~~~~^^^^^^^^^^^^^^
  7. File "/Users/max_liu/max_liu/company/Agent/examples/mode_workflow/server.py", line 244, in _json
  8. self.wfile.write(body)
  9. ~~~~~~~~~~~~~~~~^^^^^^
  10. File "/usr/local/anaconda3/lib/python3.13/socketserver.py", line 845, in write
  11. self._sock.sendall(b)
  12. ~~~~~~~~~~~~~~~~~~^^^
  13. BrokenPipeError: [Errno 32] Broken pipe
  14. During handling of the above exception, another exception occurred:
  15. Traceback (most recent call last):
  16. File "/usr/local/anaconda3/lib/python3.13/socketserver.py", line 697, in process_request_thread
  17. self.finish_request(request, client_address)
  18. ~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^
  19. File "/usr/local/anaconda3/lib/python3.13/socketserver.py", line 362, in finish_request
  20. self.RequestHandlerClass(request, client_address, self)
  21. ~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  22. File "/usr/local/anaconda3/lib/python3.13/socketserver.py", line 766, in __init__
  23. self.handle()
  24. ~~~~~~~~~~~^^
  25. File "/usr/local/anaconda3/lib/python3.13/http/server.py", line 436, in handle
  26. self.handle_one_request()
  27. ~~~~~~~~~~~~~~~~~~~~~~~^^
  28. File "/usr/local/anaconda3/lib/python3.13/http/server.py", line 424, in handle_one_request
  29. method()
  30. ~~~~~~^^
  31. File "/Users/max_liu/max_liu/company/Agent/examples/mode_workflow/server.py", line 324, in do_GET
  32. self._err(f"{type(e).__name__}: {e}", 500)
  33. ~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  34. File "/Users/max_liu/max_liu/company/Agent/examples/mode_workflow/server.py", line 247, in _err
  35. self._json({"error": msg}, code)
  36. ~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^
  37. File "/Users/max_liu/max_liu/company/Agent/examples/mode_workflow/server.py", line 243, in _json
  38. self.end_headers()
  39. ~~~~~~~~~~~~~~~~^^
  40. File "/usr/local/anaconda3/lib/python3.13/http/server.py", line 538, in end_headers
  41. self.flush_headers()
  42. ~~~~~~~~~~~~~~~~~~^^
  43. File "/usr/local/anaconda3/lib/python3.13/http/server.py", line 542, in flush_headers
  44. self.wfile.write(b"".join(self._headers_buffer))
  45. ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  46. File "/usr/local/anaconda3/lib/python3.13/socketserver.py", line 845, in write
  47. self._sock.sendall(b)
  48. ~~~~~~~~~~~~~~~~~~^^^
  49. BrokenPipeError: [Errno 32] Broken pipe
  50. ----------------------------------------