Skip to content

Commit

Permalink
Fix issues
Browse files Browse the repository at this point in the history
  • Loading branch information
HardNorth committed Sep 14, 2023
1 parent ab2c919 commit 18a0dcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reportportal_client/aio/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ async def log_batch(self, log_batch: Optional[List[AsyncRPRequestLog]]) -> Tuple
url = root_uri_join(self.base_url_v2, 'log')
if log_batch:
response = await AsyncHttpRequest(self.session.post, url=url,
data=AsyncRPLogBatch(log_batch)).make()
data=AsyncRPLogBatch(log_batch).payload).make()
return await response.messages

def clone(self) -> 'Client':
Expand Down

0 comments on commit 18a0dcf

Please sign in to comment.