❓Question
I am trying to log experiments in a remote AIM server. I can see that the server is up and running, and through the browser I can connect, get the version, etc.
However, when connecting my python code to it, I am using AimLogger(repo='aim://host:53800') it fails with a JSONDecodeError on line 158 of aim/ext/transport/client.py. Apparently it tries to read a JSON message from the connect response, but looking at its implementation (and probing it through the browser) I see that that endpoint never responses with a JSON, simply a 200 code. Am I missing something or is this a bug?
❓Question
I am trying to log experiments in a remote AIM server. I can see that the server is up and running, and through the browser I can connect, get the version, etc.
However, when connecting my python code to it, I am using
AimLogger(repo='aim://host:53800')it fails with a JSONDecodeError on line 158 of aim/ext/transport/client.py. Apparently it tries to read a JSON message from the connect response, but looking at its implementation (and probing it through the browser) I see that that endpoint never responses with a JSON, simply a 200 code. Am I missing something or is this a bug?