updating express

This commit is contained in:
José Henrique Ivanchechen 2023-11-04 21:23:46 -03:00
parent 9ef644702b
commit acfd94f6ff
2 changed files with 6 additions and 6 deletions

@ -1 +1 @@
Subproject commit 9916a85a0a6b101eb9b3010dc232745b1bd66d73 Subproject commit b85d8c503e7fa55fdf54e2bbbaa8bbc96cdf1a4f

View File

@ -18,10 +18,10 @@ person_json = {
person_json = str(person_json).encode('utf-8') person_json = str(person_json).encode('utf-8')
FRAMEWORKS = [ FRAMEWORKS = [
('Actix', 'tcc-actix', 'orange'), # ('Actix', 'tcc-actix', 'orange'),
('ASP.NET', 'tcc-aspnet', 'blue'), # ('ASP.NET', 'tcc-aspnet', 'blue'),
('Flask', 'tcc-flask', 'grey'), # ('Flask', 'tcc-flask', 'grey'),
# ('Express', 'tcc-express', 'red'), ('Express', 'tcc-express', 'red'),
# ('Spring', 'tcc-spring', 'green'), # ('Spring', 'tcc-spring', 'green'),
] ]
@ -45,5 +45,5 @@ API_REQUESTS = [
# ('/image/load-big-image', 'GET', range(0, 500, 50), None), # ('/image/load-big-image', 'GET', range(0, 500, 50), None),
# ('/static/big-image.png', '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), # ('/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")),
] ]