Gabriel Erzse
Gabriel Erzse
> @gerzse Is there a test case that covers this? @vladvildanov Not an explicit unit test. The Jupyter notebook that I updated is "alive", in the sense that it can...
> @gerzse arguments that change the reply type should be implemented as their own command, see [HRANDFIELD_COUNT](https://github.com/redis/node-redis/blob/master/packages/client/lib/commands/HRANDFIELD_COUNT.ts) and [HRANDFIELD_COUNT_WITHVALUES](https://github.com/redis/node-redis/blob/master/packages/client/lib/commands/HRANDFIELD_COUNT_WITHVALUES.ts) for example. > > For this command, we should have: >...
@walles It's been two years since you reported this. Thanks for taking the time to check. Nice automation, btw! I ran you script on the current code base. Of course,...
> Some of the CI tests fails flakily with a segmentation fault - if i rerun the CI in my fork, it would work most of the time. But I...
@ebergard This is very similar to #3211. You must have fixed the issue in parallel. :-) I left some comments on the other PR (there is even more duplication related...
@willfrey Thanks for this! Would you mind sharing how you ran `pyright`? I gave it a quick try, and was surprised to actually see many errors. I'm trying to spot...
Thanks @willfrey , it worked as you suggested. Plenty of things to fix overall... Thanks for pointing in the right direction.
@Wusii You spotted it right, the 4.3.x branch is the last one to support Python 3.6, and 4.3.6 is the last release in that branch. That line in the readme...
Hi @Simoliv , When you create the timeseries, you can't use kwargs. You must write it as: `r.execute_command('TS.CREATE', 'ts_key', 'labels', "label1", 1, "label2", 2, 'duplicate_policy', "LAST")` and then things start...
Hi @bitterteriyaki, Indeed, as you saw, currently only Python 3.11 is supported. There is a PR started for supporting 3.12 (https://github.com/redis/redis-py/pull/2979), work will hopefully restart on it soon. Personally I...