Bartek Ogryczak
Bartek Ogryczak
Created a unittest to show another scenario when it is still a problem. 9549d6e7188222377345262f9cb2cd5c5da7f1c1
@gid-sentry we do have `count` as `timesSeen`, however we don't have a way to do a _less than_ or _more than_ comparison right now. Not sure if we'd go route...
Likely to be caused by https://github.com/getsentry/sentry-python/issues/2386
@lobsterkatie FYI, regarding renaming rather than dropping, I'll make that a separate PR
This actually needs fixin' in the SDK, not here.
@wedamija > This makes sense, although I'm wondering if it's much different to `RedisSlidingWindowRateLimiter` in practice? It allows absorbing bursts (bucket size) while at the same time allows defining significantly...
> Though to your point, if you'd set _LeakyBucket_ to burst rate `X` and drip rate to `Y` per second, it's would give you similar result as setting _SlidingWindow_ to...
> Both the interpreters are free-threaded. Exactly, which differs from how the Python.org installer works. pyenv splits that into two installable versions, `3.13` and `3.13t`, so IMO it should install...
barebones proof of concept `setup.py` ``` from setuptools import setup import warnings warnings.warn("this package is deprecated, use kafka-python instead", DeprecationWarning) version = '1.3.5' setup( name='kafka', version=version, install_requires='kafka-python=={version}'.format(version=version) ) ``` ```$...
I believe that to get this working in Issues we must first get it as a tag from the SDK, so I'm transferring this issue.