[PATCH] Fix /bytes endpoint with newer werkzeug versions At some point, werkzeug starting checking the inputs to the write() method, which caused the following traceback: Traceback (most recent call last): File "/usr/lib/python3/dist-packages/werkzeug/serving.py", line 364, in run_wsgi execute(self.server.app) File "/usr/lib/python3/dist-packages/werkzeug/serving.py", line 328, in execute write(data) File "/usr/lib/python3/dist-packages/werkzeug/serving.py", line 296, in write assert isinstance(data, bytes), "applications must write bytes"
Replace deprecated JSONIFY_PRETTYPRINT_REGULAR usage This was deprecated in 2.2.0, and is gone in 2.3.0. We already require 2.2.4 or higher. The deprecation notice says to set `app.json.compact` instead, so we'll do that!