Ryan Johnston
Ryan Johnston
I experienced this issue, too, but I think this may be a misunderstanding with how `express-http-proxy` works. The idea is that you can forward a given path to a given...
It would be nice to be able to set the `:key` attribute from the call to `tracked` similar to how we can pass owner and recipient.
@pokonski sure thing. I have a model that's namespaced, so the generated `model_name` ends up looking like `my_rails_project_api_v1_my_model`. Ideally, I'd like to overwrite this by doing something like: ``` ruby...
@dragonchoi I don't think this is handled by `durable_rules` natively. However, I got something working that allowed me to check when a timer with a dynamic name timed out with...
> were you able to resolve this issue? Just seeing your comment now. Just to close the loop: I was never able to resolve this, and I'm not sure if...
I have run into some undefined behavior that is perhaps a result of this. Using the latest `master` branch: ```C #include #include #include #include #include int main() { jwt_t *jwt...
Expected: `jwt_decode` should correctly set `decoded_jwt->alg` to `jwt->alg` based on the `alg` header in the encoded jwt string `out`. This was specified by `jwt_set_alg(jwt`. Actual: `jwt_decode` discards the `alg` header...
> It's not apparent in your example code where this is happening. One thing I can say is that result of `jwt_decode()` is not meant to be reused to create...
It appears that RFC 7519 specifies that the header "alg" is used to specify the algorithm used: https://datatracker.ietf.org/doc/html/rfc7519#section-3.1 Are you sure it makes sense not to set the alg property...
I have found where this happens. Inside of jwt_verify_head, we run `jwt_scrub_head` (which sets the alg to none https://github.com/benmcollins/libjwt/blob/master/libjwt/jwt.c#L191) if `key` is not present on the `jwt_t`. Since we are...