Skip to content

Commit

Permalink
Fix base url for stream transfer (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
george-zubrienko authored Sep 22, 2022
1 parent c0a8ffa commit 79340f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esd_services_api_client/arcane/_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def transfer_stream(self, source: str, stream_id: str, new_owner: str) -> Option
:return:
"""

transfer_response = self.http.post(f"{self.base_url}/transfer/{source}/{stream_id}/{new_owner}")
transfer_response = self.http.post(f"{self.base_url}/stream/transfer/{source}/{stream_id}/{new_owner}")

transfer_response.raise_for_status()

Expand Down

0 comments on commit 79340f7

Please sign in to comment.