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
Currently, for archiver endpoints that requires a tick number in the request we are checking if the requested tick number is higher than last processed tick; if that's the case, we return an error saying that requested tick is in the future.
This added a lot of duplication in the handlers logic and we need change to use a middleware approach;
In gRPC the middlewares are implemented by using interceptors;
The text was updated successfully, but these errors were encountered:
What? Why? Who?
Currently, for archiver endpoints that requires a tick number in the request we are checking if the requested tick number is higher than last processed tick; if that's the case, we return an error saying that requested tick is in the future.
This added a lot of duplication in the handlers logic and we need change to use a middleware approach;
In gRPC the middlewares are implemented by using interceptors;
The text was updated successfully, but these errors were encountered: