Results 6 comments of precious

This bug can be reproduced with babel es2015 preset. With `.babelrc` config ```json {"presets": ["es2015"], "plugins": ["transform-decorators-legacy"]} ``` and `mocha` option `--compilers js:babel-core/register`.

This fix may help. It prevents `defineProperty` for `this` if property is accessed from a super class. Let me know if this solution is acceptable -- I'll create a pull...

@systemmonkey42 The first issue has been fixed. I can't reproduce the 2nd one -- can you provide a small file that is not minified correctly please? Thank you for reporting...

I'm getting the same issue as @agubelu and @weimzh sporadically -- ``` Traceback (most recent call last): File "[our_app]", line 382, in [some_func] response = requests.request( ^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.11/site-packages/requests/api.py", line...

Also I observe `WORKER TIMEOUT (pid:)` errors (indicating that gunicorn is killing an unresponsive gevent worker) in logs at the same time as the mentioned above exceptions.

A small update on the issue -- I've upgraded gunicorn and gevent to the latest versions and the mentioned "requests" issue disappeared. Though the "WORKER TIMEOUT" errors were remaining. So...