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
This incompatibility causes a crash in autoendpoint after running for a few minutes, when handling a request.
Due to this incompatibility, we must copy and update whatever code autoendpoint uses from autopush_common into Tokio 0.2 (futures 0.3) compatible code. Until Actix fixes the runtime issue or we upgrade the rest of the autopush codebase to Tokio 0.2, autoendpoint cannot use any Tokio 0.1 code.
The text was updated successfully, but these errors were encountered:
* Copy and upgrade parts of DynamoStorage into autoendpoint
Autoendpoint no longer uses any Tokio 0.1 code (and consequently doesn't
crash).
Some of the autopush_common macros are exported so they can be used in
the autoendpoint database client.
The autoendpoint database client returns an option for get_user instead
of an error if it doesn't exist.
* Don't expose internal database error messages in responses
* Fix hashmap macro example
* Enable the log feature of "again"
* Handle both serialization AND deserialization errors in DbClient
Closes#172
Background: https://github.com/actix/actix-web/issues/1593
This incompatibility causes a crash in autoendpoint after running for a few minutes, when handling a request.
Due to this incompatibility, we must copy and update whatever code
autoendpoint
uses fromautopush_common
into Tokio 0.2 (futures 0.3) compatible code. Until Actix fixes the runtime issue or we upgrade the rest of the autopush codebase to Tokio 0.2, autoendpoint cannot use any Tokio 0.1 code.The text was updated successfully, but these errors were encountered: