@@ -163,11 +163,10 @@ def python_to_golang_sync(func_name, other_set = {}):
res = requests.post('http://localhost:' + db_data + '/', data = json.dumps(other_set))
data = res.text
+ print(data)
if "error" == data:
raise
else:
- print(data)
-
return data
async def python_to_golang(func_name, other_set = {}):