hexcowboy

Results 40 comments of hexcowboy

I would accept a PR for this. Here is some relevant documentation from the `redis` crate https://docs.rs/redis/latest/redis/cluster/index.html

@ZaraGiraffe feel free to open a pull request if you'd like

rslock >0.7.0 intends for you to explicitly handle drop by calling `unlock`. Doing otherwise could lead to race conditions. ```rs let lock = lock_manager.lock(key, ttl).await?; // do work lock_manager.unlock(&lock).await; //...

It is definitely broken on the latest wrangler `4.20.5` (in my case when using beta remote bindings) and is solved by patching `pg-cloudflare` ```diff diff --git a/package.json b/package.json index f0d277340fb57ea7caab3c9dd6408d92ca03361f..59839662842c57d944885de56bb05104c922b51a...

Based on this issue https://github.com/aws/aws-sam-cli/issues/4784 it seems you *must* run `sam build` before running the local api with compiled languages. I will leave this open as its very misleading for...

I'm also noticing this with the same keybindings as you ```lua vim.api.nvim_set_keymap('n', '', 'BufferLineCyclePrev', { noremap = true, silent = true }) vim.api.nvim_set_keymap('n', '', 'BufferLineCycleNext', { noremap = true, silent...

Hey @dfaust , thanks for taking the time to open this PR. I'm not a big fan of renaming `retry_count` as this would be a breaking API change. If the...

Is there another way to see logs from the ConsoleSpanExporter? Or just waiting for the issue to be resolved?

I think that would mean updating the example usage with ``, as changing the `onChange` API would be a breaking change.