Skip to content

Commit 271f1d7

Browse files
committed
Remove getting message on launch finish, since there is no such field in this response.
1 parent cb84783 commit 271f1d7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

reportportal_client/aio/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ async def finish_launch(
446446
if not response:
447447
return None
448448
logger.debug("finish_launch - ID: %s", await await_if_necessary(launch_uuid))
449-
return ""
449+
return None
450450

451451
async def update_test_item(
452452
self,

reportportal_client/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -772,7 +772,7 @@ def finish_launch(
772772
return None
773773
logger.debug("finish_launch - ID: %s", self.__launch_uuid)
774774
self._log(self._log_batcher.flush())
775-
return ""
775+
return None
776776

777777
def update_test_item(
778778
self, item_uuid: str, attributes: Optional[Union[list, dict]] = None, description: Optional[str] = None

0 commit comments

Comments
 (0)