We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 763659a commit b14f9c9Copy full SHA for b14f9c9
reportportal_client/service_async.py
@@ -148,11 +148,12 @@ def terminate(self, nowait=False):
148
nowait: set to True to terminate immediately and skip processing
149
messages still in the queue
150
"""
151
+ logger.debug("Acquiring lock for service termination")
152
with self.lock:
153
logger.debug("Terminating service")
154
155
if not self.listener:
- logger.debug("Service already stopped.")
156
+ logger.warning("Service already stopped.")
157
return
158
159
self.listener.stop(nowait)
0 commit comments