Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion http_benchmark/clients/requestx_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def make_request(self, request: HTTPRequest) -> Dict[str, Any]:
"status_code": response.status_code,
"headers": dict(response.headers),
"content": response.text,
"response_time": response.elapsed.total_seconds(),
"response_time": response.elapsed,
"url": str(response.url),
"success": True,
"error": None,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "http-client-benchmarker"
version = "5.1.1"
version = "5.1.2"
description = "A Python HTTP Client Performance Benchmark Framework"
readme = "README.md"
authors = [{name = "Qunfei Wu", email = "wu.qunfei@gmail.com"}]
Expand Down
Loading