MarcinZegar commented on issue #19525:
URL: https://github.com/apache/superset/issues/19525#issuecomment-1101527980
Instead of
`#trying to use the "current user" request as a test
response = requests.get('http://localhost:8088/api/v1/me', headers=headers)`
you should try:
```
session.headers.update(headers)
response = session.get('http://localhost:8088/api/v1/me')`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]