You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the current setup its possible for the python client to send invalid json to the server (causing a hard to debug 500 there), because by default json.dumpallows NaNs to be included in the generated json. I propose setting allow_nan=False in all json.dump calls to avoid this and generate a clear error on the client.
With the current setup its possible for the python client to send invalid json to the server (causing a hard to debug 500 there), because by default
json.dump
allows NaNs to be included in the generated json. I propose settingallow_nan=False
in alljson.dump
calls to avoid this and generate a clear error on the client.cc @freeman-lab
The text was updated successfully, but these errors were encountered: