We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4bd0a6 commit 840a54eCopy full SHA for 840a54e
CHANGELOG.md
@@ -1,5 +1,14 @@
1
# Change Log
2
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
12
## Release 1.6.1 (2/11/24)
13
14
### Added
tests/test_serverless/test_modules/test_logger.py
@@ -147,6 +147,6 @@ def test_log_truncate(self):
147
logger.log(long_message, "INFO", job_id)
148
149
# Construct the expected log output
150
- expected_log_output = f'INFO | {job_id} | {truncated_message}'
+ expected_log_output = f'INFO | {job_id} | {truncated_message}'
151
152
mock_print.assert_called_once_with(expected_log_output, flush=True)
0 commit comments