starmallow 0.6.4__tar.gz → 0.6.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {starmallow-0.6.4 → starmallow-0.6.5}/PKG-INFO +1 -1
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/__init__.py +1 -1
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/background.py +1 -1
- {starmallow-0.6.4 → starmallow-0.6.5}/.editorconfig +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/.gitignore +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/.pre-commit-config.yaml +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/Dockerfile +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/LICENSE.md +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/README.md +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/docker-compose.yml +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/docs/design_ideas.md +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/examples/__init__.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/examples/cache_server.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/examples/flask_server.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/examples/goals.ipynb +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/examples/gunicorn.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/examples/recommended_server.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/examples/sample_server.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/pyproject.toml +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/applications.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/concurrency.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/constants.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/dataclasses.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/datastructures.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/decorators.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/delimited_field.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/docs.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/endpoint.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/endpoints.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/exception_handlers.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/exceptions.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/ext/__init__.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/ext/marshmallow/__init__.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/ext/marshmallow/openapi.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/fields.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/middleware/__init__.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/middleware/asyncexitstack.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/params.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/request_resolver.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/requests.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/responses.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/routing.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/schema_generator.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/security/__init__.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/security/api_key.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/security/base.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/security/http.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/security/oauth2.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/security/open_id_connect_url.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/security/utils.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/serializers.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/types.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/utils.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/websockets.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/__init__.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/basic_api.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/__init__.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/api_key/__init__.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/api_key/test_api_key_cookie.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/api_key/test_api_key_cookie_description.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/api_key/test_api_key_cookie_optional.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/api_key/test_api_key_header.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/api_key/test_api_key_header_description.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/api_key/test_api_key_header_optional.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/api_key/test_api_key_query.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/api_key/test_api_key_query_description.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/api_key/test_api_key_query_optional.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/http/__init__.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/http/test_http_base.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/http/test_http_base_description.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/http/test_http_base_optional.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/http/test_http_basic.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/http/test_http_basic_realm.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/http/test_http_basic_realm_description.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/http/test_http_bearer.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/http/test_http_bearer_description.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/http/test_http_bearer_optional.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/http/test_http_digest.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/http/test_http_digest_description.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/http/test_http_digest_optional.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/oauth2/__init__.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/oauth2/test_oauth2.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/oauth2/test_oauth2_authorization_code_bearer.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/oauth2/test_oauth2_authorization_code_bearer_description.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/oauth2/test_oauth2_optional.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/oauth2/test_oauth2_optional_description.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/oauth2/test_oauth2_password_bearer_optional.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/oauth2/test_oauth2_password_bearer_optional_description.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/openid_connect/__init__.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/openid_connect/test_openid_connect.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/openid_connect/test_openid_connect_description.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/openid_connect/test_openid_connect_optional.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_additional_properties.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_additional_response_extra.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_additional_responses_bad.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_additional_responses_custom_model_in_callback.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_additional_responses_custom_validationerror.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_additional_responses_default_validationerror.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_additional_responses_response_class.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_additional_responses_router.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_annotated.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_basic_api.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_dataclass_fields.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_delimited_params.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_http_endpoints.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_input.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_middleware.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_requests_orjson.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_requests_ujson.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_resolved_param_contextmanagers.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_resolved_params.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_responses.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_responses_orjson.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_responses_ujson.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_ws_router.py +0 -0
- {starmallow-0.6.4 → starmallow-0.6.5}/tests/utils.py +0 -0
@@ -18,7 +18,7 @@ class BackgroundTask(StarletteBackgroundTask):
|
|
18
18
|
else:
|
19
19
|
await run_in_threadpool(self.func, *self.args, **self.kwargs)
|
20
20
|
except BaseException as e:
|
21
|
-
logger.exception(f'Background Task {self.func} failed: {e}')
|
21
|
+
logger.exception(f'Background Task {self.func.__module__}.{self.func.__name__} failed: {e}')
|
22
22
|
|
23
23
|
|
24
24
|
class BackgroundTasks(StarletteBackgroundTasks):
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{starmallow-0.6.4 → starmallow-0.6.5}/tests/security/api_key/test_api_key_cookie_description.py
RENAMED
File without changes
|
{starmallow-0.6.4 → starmallow-0.6.5}/tests/security/api_key/test_api_key_cookie_optional.py
RENAMED
File without changes
|
File without changes
|
{starmallow-0.6.4 → starmallow-0.6.5}/tests/security/api_key/test_api_key_header_description.py
RENAMED
File without changes
|
{starmallow-0.6.4 → starmallow-0.6.5}/tests/security/api_key/test_api_key_header_optional.py
RENAMED
File without changes
|
File without changes
|
{starmallow-0.6.4 → starmallow-0.6.5}/tests/security/api_key/test_api_key_query_description.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{starmallow-0.6.4 → starmallow-0.6.5}/tests/security/http/test_http_basic_realm_description.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{starmallow-0.6.4 → starmallow-0.6.5}/tests/security/oauth2/test_oauth2_authorization_code_bearer.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{starmallow-0.6.4 → starmallow-0.6.5}/tests/security/oauth2/test_oauth2_optional_description.py
RENAMED
File without changes
|
{starmallow-0.6.4 → starmallow-0.6.5}/tests/security/oauth2/test_oauth2_password_bearer_optional.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{starmallow-0.6.4 → starmallow-0.6.5}/tests/security/openid_connect/test_openid_connect_optional.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{starmallow-0.6.4 → starmallow-0.6.5}/tests/test_additional_responses_custom_model_in_callback.py
RENAMED
File without changes
|
{starmallow-0.6.4 → starmallow-0.6.5}/tests/test_additional_responses_custom_validationerror.py
RENAMED
File without changes
|
{starmallow-0.6.4 → starmallow-0.6.5}/tests/test_additional_responses_default_validationerror.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|