Tim
Tim
Okay thank you. I'm looking forward to your solution. Currently I have this solution: ```rs static KEYCLOAK: OnceCell = OnceCell::const_new(); async fn start_auth_container() -> &'static (ContainerAsync, String) { KEYCLOAK .get_or_init(||...
Hm okay. For the beginning this looks nice. But I don't really understand what you mean with " it depends on the parallelism of the tests," . Currently I've 3...
> Hello, I've ran into the same issue and I can confirm that @DDtKey's solution using `OnceLock `/`Weak` is working for parallel tests. > > Regarding the first proposed solution...
> ```rust > fn clean_up() { > SRV_INPUT.tx.blocking_send(ContainerCommands::Stop).unwrap(); > SRC_STOP.rx.blocking_lock().blocking_recv().unwrap(); > } > ``` What is SRV_INPUT and SRC_STOP?
I've some issues too. Maybe it is related. I built a small minimal example, but I can't see the reason why http://localhost:3000 cause a hydration error: https://github.com/Tockra/nextjs-test-playground/tree/mui-cache-problem I built my...
> See [this thread](https://github.com/rustls/rustls/issues/1938) for answers. Is this really related? My main problem is that there happens TLS stuff but I don't use TLS functionality of the crate in some...
> There are multiple crypto backends available and you need to tell rust-tls which one to use. I know that, but I don't know why a TLS free connection (or...
I still can not understand why it is intended that the check happens during you build up a builder...