Skip to content

Commit d3853af

Browse files
committed
Do not stop log processing on the first error
1 parent 34e1d1c commit d3853af

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
### Fixed
55
- Issue [#180](https://github.com/reportportal/client-Python/issues/180):
66
logger crash on attachments, by @HardNorth
7+
### Changed
8+
- Log processing does not stop on the first error now.
79

810
## [5.2.0]
911
### Changed

reportportal_client/core/worker.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@ def _request_process(self, request):
121121
except Exception as err:
122122
logger.exception('[%s] Unknown exception has occurred. Terminating'
123123
' the worker.', err)
124-
self.stop_immediate()
125124
self._queue.task_done()
126125

127126
def _stop(self):

0 commit comments

Comments
 (0)