GP-616: Fix 32-bit pointer placement in WoW64 targets.

This commit is contained in:
Dan 2025-04-09 13:27:49 +00:00
parent c75c852001
commit ed48b0e452
37 changed files with 754 additions and 311 deletions

View file

@ -1376,8 +1376,9 @@ class Receiver(Thread):
Client._write_value(
reply.xreply_invoke_method.return_value, result)
except BaseException as e:
print("Error caused by front end")
traceback.print_exc()
print(f"Error caused by front end: {e}")
# TODO: Add a field to error for stacktrace, log it at front-end
# traceback.print_exc()
reply.xreply_invoke_method.error = repr(e)
self.client._send(reply)