Skip to content

Commit

Permalink
Merge pull request #130 from ynput/bugfix/sanitize_host_url
Browse files Browse the repository at this point in the history
Fix: remove trailing slash in host url
  • Loading branch information
kalisp authored Feb 14, 2025
2 parents d451697 + 6e7e8b9 commit 2b7f271
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/ayon_deadline/addon.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ def get_deadline_server_connection_info(
auth = self._get_server_user_auth(dl_server_info, local_settings)
return DeadlineConnectionInfo(
server_name,
dl_server_info["value"],
dl_server_info["value"].rstrip("/"),
auth,
not dl_server_info["not_verify_ssl"],
)
Expand Down

0 comments on commit 2b7f271

Please sign in to comment.