You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 1, 2021. It is now read-only.
- `loop` parameter to `Application.__init__()` is deprecated, and its usage has been removed from examples and tests.
- Passing a request handler to `Application.add_route` which is not a coroutine function is deprecated, and thus a warning is raised when passing a `JsonRpc` instance to it - now to avoid this warning, the `JsonRpc.handle_request` instance method can be passed to it, which is identical the previous `__call__` function. The `__call__` function now acts as an alias for `JsonRpc.handle_request` for backwards compatibility.
- Usage of `Application.make_handler` to asynchronously start the server is deprecated in favour of the `AppRunner` API.
Signed-off-by: Toby Harradine <tobyharradine@gmail.com>
0 commit comments