Sergei Lavrentev
Sergei Lavrentev
Thank you for adding setting timeout methods! But as @sjoerdsimons said, we need different timeouts for different methods, because request for a list of containers is a fast operation but...
How it can be done with macro? My thoughts was an adding method to client like `with_timeout`, but this method doesn't change timeout in client, just affect timeout in current...
I can try to make a draft pr. What do you think?
At the moment I don't understand how to do it without Docker struct redesign 1. as `create_image` method receives self by reference we can't temporary change timeout field 2. to...
Have the same issue with CLion 2021.3.4 and Rust Plugin 0.4.168.4555-213 Enabling experimental features didn't help
Also, I found empty line in inspector which belongs to this error
@Undin recursive macro expansion shows me that ActiveModelTrait is implemented
Also I found that autocomplete is not working in structs while enabling experimental features ``` struct A { p } ``` When you type `p` IDE doesn't show any variant,...
Thank you for review! Did these fixes and reduced test.
The problem with big sized images can be solved like this: ```rust let ci = client .create_image( Some(CreateImageOptions { from_image, ..Default::default() }), None, credentials, ) .try_collect::(); tokio::time::timeout(Duration::from_secs(1), ci).await.unwrap().unwrap(); ``` So,...