Karthikeyan Singaravelan
Karthikeyan Singaravelan
@ephraimbuddy Apologies for late reply. Unfortunately I got held up with work. I remember your patch in one of the PR comments. I hope you or someone can pick this...
Thanks @ephraimbuddy
Had the same issue. I sent myself a message and scrolled to have the scroll working across the app. But when I restarted the app the issue is still present....
Response from Slack as below : > We've had some other users report a similar issue when using our legacy app and, in these cases, an update to our latest...
`airflow.www.decorators` has `action_logging` method used in different parts of the views for logging. An example of using the decorator in the `patch_connection` endpoint where I modified the description of the...
I am okay with closing this since main has a long term fix and 2.10 will be released in few months hopefully. We had this patch since we found this...
`asyncThread` inherits from `threading.Thread`. `isAlive` was a deprecated alias for `is_alive` that was removed in Python 3.9. Using `is_alive` instead of `isAlive` will fix this issue since `is_alive` is present...
Warnings before PR : ``` python -Wall -m pytest tests/test_lib.py ========================================================================= test session starts ========================================================================== platform linux -- Python 3.10.0b1, pytest-6.2.4, py-1.10.0, pluggy-0.13.1 rootdir: /root/checked_repos/twiggy collected 2 items tests/test_lib.py .....
Note : In Python 3.11 the deprecated aliases have been removed in python/cpython#28268
Did you have `regex` installed (Try `python setu.py install`) ? It's present in the `setup.py` under `install_requires` : https://github.com/mailgun/talon/blob/a7404afbcb67e66aa13ff8917df4dcbbf3534624/setup.py#L48