Skip to content

Commit

Permalink
HH-220006 Add custom release version
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyGladkov committed Jun 21, 2024
1 parent c8b960c commit f6fe956
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions changelog.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
- name: 7.5.9
date: '2024-06-21T09:42:17.532559+03:00'
description: 'Добавлен заголовок времени выполнения запроса'
instructions: ''
compatible: true

- name: 7.5.8
date: '2024-04-11T09:42:17.532559+03:00'
description: ''
Expand Down
2 changes: 1 addition & 1 deletion frontik/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ def finish(self, chunk: Optional[Union[str, bytes, dict]] = None) -> Future[None
for name, value in self._mandatory_headers.items():
self.set_header(name, value)

self.set_header('X-Frontik-Execution-Time', str(self.request.request_time()))
self.set_header('Server-Timing', str(self.request.request_time()))

for args, kwargs in self._mandatory_cookies.values():
try:
Expand Down
2 changes: 1 addition & 1 deletion frontik/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = '7.5.8'
version = '7.5.9'
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 = 'poetry.core.masonry.api'

[tool.poetry]
name = 'frontik'
version = '7.5.8'
version = '7.5.9'
description = 'Frontik is an asyncronous Tornado-based application server'
authors = ['architecture <[email protected]>']
repository = 'https://github.com/hhru/frontik'
Expand Down

0 comments on commit f6fe956

Please sign in to comment.