Sergei Blinov

Results 7 comments of 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...

**Inside docker** If I try like this https://github.com/awnion/example-ever-sdk-deno/blob/main/sdk-deno-test.ts Under docker image https://github.com/awnion/example-ever-sdk-deno/blob/main/sdk-deno-test.Dockerfile ```Makefile IMAGE_TAG := sdk-deno-test run: docker build --progress=plain -t $(IMAGE_TAG) -f sdk-deno-test.Dockerfile . docker run --rm -ti -v...

Pros: removes limit on the size of the gossip network. E.g. right now we are limited by the size of a UDP packet

related https://github.com/MystenLabs/sui/issues/24297

> @awnion How can I test it with Bash on Linux? If you have Rust and Cargo set up, you can generate the completion file from my branch. E.g like...