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
Currently a new connection is opened on every HTTP interaction (see log output below). Introducing a requests.session tied to APIConnection and TigerConnection objects may show some performance gains, especially on larger transactions.
The main difference would amount to changing from requests.get to self.session.get (inside APIConnection and TigerConnection).
I don't think so. That failure looks like it originates server side since it's an HTTP error 504. It might be worth rerunning the build (especially since ubuntu python 3.9 build passed).
Currently a new connection is opened on every HTTP interaction (see log output below). Introducing a
requests.session
tied toAPIConnection
andTigerConnection
objects may show some performance gains, especially on larger transactions.The main difference would amount to changing from
requests.get
toself.session.get
(insideAPIConnection
andTigerConnection
).If done, this will require some refactoring of
remote.py
andtiger.py
. Perhaps even a BaseClass that can be shared between the two.The text was updated successfully, but these errors were encountered: