infohash

Results 9 issues of infohash

```python app = Starlite(route_handlers=[device_router, health_check], static_files_config=[ StaticFilesConfig( directories=['templates'], path='/home', html_mode=True) ], openapi_config=OpenAPIConfig(title='Starlite Service', version='0.0.1')) ``` ## Structure ``` ── src │ ├── ... │ ├── templates │ │ ├── 404.html...

It is recommended to use caching for token introspection request as there can be many requests fired by the same user. The cached requests must be short lived and time...

`list(redirect_uri)` was splitting the redirect_uri string into pieces. This bug somehow survived the test cases. ## Bug ```python redirect_uri = 'https://idp.example.com/callback' >>> list(redirect_uri) ['h', 't', 't', 'p', 's', ':', '/',...

* Added a condition to take wraps into consideration when autospeccing objects * Added test cases to test wraps of a class, a class instance and a function type *...

awaiting review

* Added a condition to take wraps into consideration when autospeccing objects * Added test cases to test wraps of a class, a class instance and a function type *...

awaiting review

Since `token_auth` was introduced, it has been using **[Token Introspection](https://oauth.net/2/token-introspection/)** for JWT verification which is not required. As JWT can be verified in memory, token introspection has now become optional...

Adds lazy loading of provider config to allow blueprint views to be decorated by auth decorators without initializing auth first. This will provide flexibility to import `auth` instance in blueprint...

Addresses: * Issue: gh-171 Instead of hardcoding complete post logout redirect URI, oidc_logout should be able to resolve URL from the endpoint name of the view function. We are already...

Sometimes you have to move a bunch of files together to another folder. If you use [move_to_using_path](https://github.com/vgrem/Office365-REST-Python-Client/blob/9584c62c9c4237107fb5ab2dc11629b8f1184b57/office365/sharepoint/files/file.py#L370) concurrently using [ThreadPoolExecutor](https://docs.python.org/3/library/concurrent.futures.html#concurrent.futures.ThreadPoolExecutor), [ClientRequestException](https://github.com/vgrem/Office365-REST-Python-Client/blob/9584c62c9c4237107fb5ab2dc11629b8f1184b57/office365/runtime/client_request_exception.py#L4) is raised. ### How to reproduce ```python import concurrent.futures...

bug