David McHealy

Results 17 comments of David McHealy

The percent register comes from vim. I have a habit of constantly in vim using adhoc shell commands like eg. `!git diff %`. (diff of the current file), `!ls %:s/src/`...

I faintly remember I had to use `cache_size: 2`, or else there would be a runtime error.

I ran into this as well. I don't even need a path map, as for every project of this nature, the root URI never changes, and I would merely set...

This setup technically works but I ran into some problems with releases, so I went ahead and submitted a pr with the ability to specify runtime config instead. Hopefully that...

I had the same requirement and I ended up creating a StreamConsumer where the `RebalanceContext` has a field `events: tokio::sync::broadcast::Sender`, and in the pre_rebalance hook, it would send down a...

Has anyone been testing this successfully? We've been hit with this bug from librdkafka [https://github.com/edenhill/librdkafka/pull/3774/commits/7435bf4b9388f2d50fd3ac00636be71b13ea6a98 in production a few times](https://github.com/edenhill/librdkafka/pull/3774), but can't really update.

This is no longer needed, now that elixir supports `config/runtime.exs`.

I think the pr was accepted a long long time ago, but this was never closed.

I'm sure you moved on from this by now, but the problem is that you spawn an 'async move' closure which tries to move to any variable it uses (one...

Without the volume call, if you are using it for testing purposes it will write data into the container and that data will be lost upon container deletion. But even...