diff --git a/backend/src/routes/counter.py b/backend/src/routes/counter.py index 1dfd1a8..4f0f756 100644 --- a/backend/src/routes/counter.py +++ b/backend/src/routes/counter.py @@ -17,7 +17,7 @@ @blueprint.route('/') def index(): response = 'Flask server' - return jsonify(response=response) + return jsonify(response=response), 502 @blueprint.route('/api/v1/reset/')