Hi the following code in python results in segmentation fault.
import aerospike
AEROSPIKE_CONFIG = {'hosts': []} # no host provided
c = aerospike.client(AEROSPIKE_CONFIG).connect()
c.udf_put("some_existing_file.lua")
I guess in the udf_put there is no check if the connection is valid.