We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e31e64 commit a9c01a1Copy full SHA for a9c01a1
nocodb/infra/requests_client.py
@@ -21,7 +21,7 @@ def __init__(self, auth_token: AuthToken, base_uri: str):
21
self.__api_info = NocoDBAPI(base_uri)
22
23
def _request(self, method, url, *args, **kwargs):
24
- response = self.__session(method, url, *args, **kwargs)
+ response = self.__session.request(method, url, *args, **kwargs)
25
response.raise_for_status()
26
return response
27
0 commit comments