Anthony Accomazzo

Results 9 issues of Anthony Accomazzo

Hey team, I originally tried using Cainophile but it hasn't received updates in a couple years. Then I found this project! Nice work. I see this project as two parts:...

enhancement

Hey team, I work with `JOSE.JWK` in their native struct in my codebase. Eg: ``` jwk = %JOSE.JWK{ fields: %{}, keys: :undefined, kty: {:jose_jwk_kty_okp_ed25519, } } ``` I want to...

Here's the offending line: https://github.com/kyknow/nestjs-redis/blob/master/lib/redis-client.provider.ts#L17 If you pass in a `url`, any other options are ignored: ``` RedisModule.register({ url: process.env.REDIS_URL, keyPrefix: process.env.REDIS_KEY_PREFIX, }), ``` What's the intended behavior here? If...

enhancement

@ericmj Followed your guidance in [this issue](https://github.com/erlef/setup-beam/issues/179). Curious if I'm even close here? Any more guidance to get Erlang ARM builds in Bob would be appreciated. Thanks, Anthony

Hey @rogeliog ! I took a guess at your email address last month, not sure if this made it to you. If it did - sorry 😅 not trying to...

We get a lot of log messages about `function_clause` errors etc that are actually just a result of bots sending packets to Supavisor. This change filters out the noise from...

### Problem Addresses #315 The `GenStage.Buffer` module was returning permanent events in LIFO instead of FIFO order when multiple permanent events were stored at the same wheel position. ### Reproduction...

**Problem** 1. Populate a producer's buffer 2. Queue multiple `sync_info`/`async_info` messages 3. Drain the buffer 4. sync_info messages are delivered - but they are delivered LIFO instead of FIFO **Example**...

When a Buffer is any size < `:infinity`, `Buffer.take_count_or_until_permanent/2` can return many permanents at a wheel position if they exist there: ```elixir alias GenStage.Buffer # Create a buffer and store...