Thrift: Python Server, Erlang Client Errors… {thrift_socket_server,244,{child_error,function_clause,[]}}
问题 This is actually my first question on stackoverflow, but I've been having a problem that I can't really seem to solve. I'm making a Python server that calls an erlang client through thrift. The only function I've made in thrift is one called bar, which takes in an integer and prints bar (integer). Heres the Python Client, its not too complicated: #!/usr/bin/env python import sys sys.path.append('../gen-py') from foo import Foo from foo.ttypes import * from foo.constants import * from thrift