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
self.token is checked for being not None, but the actual token info is stored in self.access_token. The variable self.access_token is only referenced in the blob above and should be changed to self.token (self.token is initialized)
We detected this issue by placing a print statement here, showing we were hitting this endpoint all the time.
We noticed that the oauth endpoint for hubspot was being hit every time a request for records was made.
Inspecting
client.py
:self.token
is checked for being not None, but the actual token info is stored inself.access_token
. The variableself.access_token
is only referenced in the blob above and should be changed toself.token
(self.token
is initialized)We detected this issue by placing a print statement here, showing we were hitting this endpoint all the time.
fondat-hubspot/fondat/hubspot/oauth.py
Line 133 in d0e436e
We noticed that the code bit above would fail in weird ways intermittently (e.g., returning a non-json response or a server 500)
The text was updated successfully, but these errors were encountered: