Sergei Blinov
Sergei Blinov
Something like this should work: ```rust use tokio_retry::Retry; use tokio_retry::strategy::{ExponentialBackoff, jitter}; async fn action(url: &str) -> Result { // do some real-world stuff here... Err(()) } #[tokio::main] async fn main()...
> django-pgcli doesn't seem to be compatible with Django 3.1 https://github.com/ashchristopher/django-pgcli/issues/15 From 3.1 release notes: > DatabaseClient.runshell() now requires an additional parameters argument as a list of extra arguments to...
Currently, there are only these scenarios available: ```rust /// Scenario 1: pool/tx interface + multiple queries /// /// TLDR we should never want this ambiguity /// /// for a single...