laggardkernel

Results 72 comments of laggardkernel
trafficstars

@Gallaecio I thought for a while about the compatibility thing before pushing this pr. Considering it's a trivial change, I just ignored the backward compatibility support. What about this one...

@Gallaecio Thanks for the advice about the code style. I applied them and force pushed the commit to this PR.

The post_request hook function could be defined with less arguments. `worker`, `req` are must, others are optional. Check `test_config.test_post_request()` and `config.validate_post_request()` for detail. Propose to improve the doc to make...

That's not uvicorn's fault. Some other package or the questioner yourself configured the `root` logger. And message from logger `uvicorn.error` are propagated to the `root` logger, printed by handler on...

Encountered the same problem. Ctrl with numbers like C-1 still work, but Ctrl with arrows like C-Right don't. Hammerspoon just fails to trigger `hs.eventtap.keyStroke({ 'ctrl' }, 'right')` (I set C-Right...

@Dreamsorcerer Okay, I'd like to have a try to adapt the PR with only `aioredis>=2` support when I have spare time.

WIP: Updated the PR with only aioredis 2.x support. The test is fixed and passed, but the pytest fixtures may need some updates. I'll check that later. > Would you...

aioredis 2.x only support is done. This PR is firstly made with backward compatiblity taken into consideration. It supported for both aioredis 1.x and 2.x. After the author agreed to...

Done. The `redis >= 4.2.0` async support is based on `aioredis` and the APIs are compatible. I switched to from `aioredis` to `redis` easily. All redis related tests are fixed...

Sorry, I thought the pre-commit hooks was enough to detect the linting err. Maybe some of my commits were made without git hooks installed yet. Anyway, I fixed the linting...