From acfd94f6fffd21ec0919bbd911b49f9800020c6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Henrique=20Ivanchechen?= Date: Sat, 4 Nov 2023 21:23:46 -0300 Subject: [PATCH] updating express --- Express | 2 +- scripts/common.py | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Express b/Express index 9916a85..b85d8c5 160000 --- a/Express +++ b/Express @@ -1 +1 @@ -Subproject commit 9916a85a0a6b101eb9b3010dc232745b1bd66d73 +Subproject commit b85d8c503e7fa55fdf54e2bbbaa8bbc96cdf1a4f diff --git a/scripts/common.py b/scripts/common.py index 9a2ad6f..e838ffa 100644 --- a/scripts/common.py +++ b/scripts/common.py @@ -18,10 +18,10 @@ person_json = { person_json = str(person_json).encode('utf-8') FRAMEWORKS = [ - ('Actix', 'tcc-actix', 'orange'), - ('ASP.NET', 'tcc-aspnet', 'blue'), - ('Flask', 'tcc-flask', 'grey'), - # ('Express', 'tcc-express', 'red'), + # ('Actix', 'tcc-actix', 'orange'), + # ('ASP.NET', 'tcc-aspnet', 'blue'), + # ('Flask', 'tcc-flask', 'grey'), + ('Express', 'tcc-express', 'red'), # ('Spring', 'tcc-spring', 'green'), ] @@ -45,5 +45,5 @@ API_REQUESTS = [ # ('/image/load-big-image', 'GET', range(0, 500, 50), None), # ('/static/big-image.png', 'GET', range(0, 500, 50), None), # ('/static/nginx.html', 'GET', range(0, 30_000, 5000), None), - ('/simulation/protobuf', 'POST', range(0, 30_000, 5000), (person_proto.SerializeToString(), "application/protobuf")), + ('/simulation/protobuf', 'POST', range(0, 30_000, 5000), (person_proto, "application/protobuf")), ]