Roman Useinov
Roman Useinov
This closes the connection after reading from the body, otherwise `too many open files` error pops up when making a lot of requests. http://craigwickesser.com/2015/01/golang-http-to-many-open-files/ You can also read the godoc...
I get ```rpc error: code = Unknown desc = Unable to build the crate => caused by: Unable to solve the graph => caused by: grpc-status: Unknown, grpc-message: "unknown API...
What could be done is the Env map could be turned to a type and some convenience methods could be added for type casting, to avoid doing .(int) etc. Something...
Might come in handy if you need to execute several actions to avoid executing and describing the same condition over and over again.
A good use-case would be applying Semver versioning to all endpoints, right now I have to apply a middlewareFunc to every handler, because path params are not present while executing...
…to use it in the Authorizator I'd needed that hook to support checking these tokens against Redis or any other storage. If you find that viable for your product -...
The basic idea is that we should be able to route messages from **parachains** through the Relay Chain but without privilege escalation. What this means is the receiver will still...
Current implementation makes a lot of assumptions about the app implementation, it does support scaffolding for cosmos-based app and works on localhost only. It would be nice to make these...
Current implementation assumes that we're running everything in one container, which does not really resemble the reality and has it's limitations. It would be nice to be able to spin...
Here's an example of a collection with records expiring by `expires_at`: ``` #[collection = "subscriptions"] #[derive(Serialize, Deserialize, Debug, Clone)] pub struct Subscription { #[serde(rename = "_id")] pub id: Option, pub...