Leonard Marschke
Leonard Marschke
I think I just hit the "same" issue with the following tex input: ```tex \begin{subblock} \begin{lstlisting} $ \end{lstlisting} \end{subblock} ``` (resulting in an EOF error as well)
What's the current status on this PR?
One possible solution would be streaming the `run_command` output, but unfortunately this is not yet merged / incorporated into ansible, see https://github.com/ansible/proposals/issues/92
Just did a few more tests regarding the memory consumption and the real culprit seems to be in the handling of Ansible itself: The log output generated with my test...
Certainly the search module must be replaced, but I think the general structure (Search module asking all other modules) is ok. Only the realizing is not the best.
I believe this is done by #318
May I ask why the intent is to allow only one family? The [docs](https://github.com/Keats/jsonwebtoken/blob/master/src/validation.rs#L88) state ``` /// The validation will check that the `alg` of the header is contained ///...
But just to be sure: is there any reason on why allowing only one family makes sense? For example, I have a use case where the library should verify tokens...
Fair point, but as the available algorithm family depends on the DecodingKey, wouldn't it make sense to select the algorithm according to the key? In most JWK the [algorithm](https://github.com/Keats/jsonwebtoken/blob/master/src/jwk.rs#L248) is...
Hey, thanks for your quick response! I think your reasoning makes sense. If you want, I can adjust the PR accordingly. The reason I stumbled upon that specific quirk in...