Ryan Tin Wei Jie
Ryan Tin Wei Jie
Is there anyway to tokens programmatically? Right now tokens are revoked based with the following code ```python Authorize.jwt_required() jti = Authorize.get_raw_jwt()['jti'] redis_conn.setex(jti, settings.access_expires,'true') ``` The problem lies with `Authorize.get_raw_jwt` which...
`:sslverify` is deprecated as of MySQL 5.7.11 and completely removed in MySQL 8.0. `:ssl_mode` should be used instead for establishing SSL connection with MySQL. @sodabrew suggested migrating all users to...
Updated the README to better reflect the update SSL options that Mysql supports for versions >= 5.7.11. I was struggling with understanding the difference between `verify_ssl` and `ssl_mode` and felt...
**Describe the solution you'd like** external secrets should be able to install on was fargate or at least better documentation regarding integration using fargate vs ecs **What is the added...
`cargo check` returns ``` error[E0277]: the trait bound `i16: MessageBody` is not satisfied --> src/idempotency/persistence.rs:50:31 | 50 | Ok(Some(response.body(r.response_body))) | ---- ^^^^^^^^^^^^^^^ the trait `MessageBody` is not implemented for `i16`...