jn
jn
Sure: ``` import sentry_sdk from flask import Flask from flask_socketio import SocketIO from sentry_sdk.integrations.flask import FlaskIntegration sentry_sdk.init( dsn="https://[email protected]/0", integrations=[FlaskIntegration()] ) app = Flask(__name__) socketio = SocketIO(app) @app.route('/') def index(): return...
Ok, did some playing around. Looks like sentry/newrelic wraps the response. Without sentry, we get `` as expected and gunicorn's EventletWorker.is_already_handled() will stop iteration. However, when using sentry, this becomes...
Alright, here's the workaround I've come up with: eventlet_fix.py: see edit below And in my gunicorn config.py: `worker_class = 'eventlet_fix.EventletWorker`. The issue is that sentry/newrelic wraps the responses, so we...
I wrote a script like: ``` #!/system/bin/sh sh -x /data/adb/service.d/com.google.android.youtube.sh >yt.out 2>&1 ``` and then checking `yt.out`, notable is: ``` + mount -o bind /data/adb/revanced/com.google.android.youtube/base.apk mount: can't read '/etc/fstab': No...