From 3d6e315a4cffee46d3a1c8ae7dc73ee2984a1f68 Mon Sep 17 00:00:00 2001 From: yhirose Date: Sun, 8 Sep 2024 08:38:36 -0400 Subject: [PATCH] Fix #1923 --- benchmark/Makefile | 2 ++ benchmark/flask/main.py | 9 --------- 2 files changed, 2 insertions(+), 9 deletions(-) delete mode 100644 benchmark/flask/main.py diff --git a/benchmark/Makefile b/benchmark/Makefile index b202443..f517042 100644 --- a/benchmark/Makefile +++ b/benchmark/Makefile @@ -32,6 +32,8 @@ server-crow : crow/main.cpp g++ -o $@ $(CXXFLAGS) crow/main.cpp # misc +bench-all: bench-crow bench + issue: $(BENCH) diff --git a/benchmark/flask/main.py b/benchmark/flask/main.py deleted file mode 100644 index f6707ff..0000000 --- a/benchmark/flask/main.py +++ /dev/null @@ -1,9 +0,0 @@ -from flask import Flask -app = Flask(__name__) - -import logging -logging.getLogger('werkzeug').disabled = True - -@app.route('/') -def hello_world(): - return 'Hello, World!'