Skip to content

Commit 840a54e

Browse files
committed
add: changelog
1 parent a4bd0a6 commit 840a54e

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Change Log
22

3+
## Release 1.6.2 (2/12/24)
4+
5+
### Fixed
6+
7+
- Reorder FastAPI endpoints for clarity.
8+
- Truncate long logs to avoid overloading the server.
9+
10+
---
11+
312
## Release 1.6.1 (2/11/24)
413

514
### Added

tests/test_serverless/test_modules/test_logger.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,6 @@ def test_log_truncate(self):
147147
logger.log(long_message, "INFO", job_id)
148148

149149
# Construct the expected log output
150-
expected_log_output = f'INFO | {job_id} | {truncated_message}'
150+
expected_log_output = f'INFO | {job_id} | {truncated_message}'
151151

152152
mock_print.assert_called_once_with(expected_log_output, flush=True)

0 commit comments

Comments
 (0)