8000
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 ff60613 commit 0d6d8c1Copy full SHA for 0d6d8c1
tableauserverclient/server/endpoint/auth_endpoint.py
@@ -28,6 +28,7 @@ def sign_in(self, auth_req):
28
signin_req = RequestFactory.Auth.signin_req(auth_req)
29
server_response = self.parent_srv.session.post(url, data=signin_req,
30
**self.parent_srv.http_options)
31
+ self.parent_srv._namespace.detect(server_response.content)
32
self._check_status(server_response)
33
parsed_response = ET.fromstring(server_response.content)
34
site_id = parsed_response.find('.//t:site', namespaces=self.parent_srv.namespace).get('id', None)
0 commit comments