Víctor Martínez

Results 21 comments of Víctor Martínez

@andregalastri bootlog.txt contents: ``` 1min 30.137s systemd-modules-load.service 58.856s reflector.service 34.274s pacman-init.service 5.162s NetworkManager-wait-online.service 702ms ldconfig.service 188ms sshdgenkeys.service 180ms systemd-udev-trigger.service 166ms systemd-resolved.service 145ms upower.service 141ms systemd-rfkill.service 114ms dev-mapper-luks\x2d0ee4b7f1\x2d6b65\x2d4766\x2dbf88\x2dd80929093275.device 68ms boot-efi.mount 65ms...

Also a photo of the screen logs when it hangs ![IMG_20220819_161327.jpg](https://user-images.githubusercontent.com/49537445/185638176-91e8c1c3-87ba-4549-91e8-15b788ff059b.jpg)

@JoshuaDRose What was causing the issue?

@JoshuaDRose It stills happening to me, it is really frustrating

@juhaku Thank you, I'm going to try the example As a workaround, I've done this: ```rust // On the server web::scope("/docs") .wrap(HttpAuthentication::basic(validator)) .route( "/openapi.json", web::get().to(crate::controller::open_api_spec), ) .service( SwaggerUi::new("swagger/{_:.*}") .url("/docs/openapi.json", Default::default()),...

@juhaku The example did not work for us as what we want is to modify the endpoint where the json file is served, that is a bit different from what...

It would be also nice to be able to read the tokens directly from a file and do something like ```rust // Get an ApplicationSecret instance by some means. It...

Same problem here! Can't get it to work on LazyVim :(

I wanted to implement the `From` crate for any `T` that implement `DeserializeOwned` but Rust doesn't allow to implement a foreign trait to a foreign type so I guess I...

Probably a proper thing to do could be to implement `Deserialize` on the `SecretsStore` to a NewType `SecretsConfig` that contains `T`