Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[raz] Strip the / in the server url
  • Loading branch information
romainr committed Jun 2, 2021
1 parent 7db097f commit bb54cd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion desktop/core/src/desktop/lib/raz/raz_client.py
Expand Up @@ -69,7 +69,7 @@ def renew_delegation_token(self, user):
class RazClient(object):

def __init__(self, raz_url, raz_token, username, service='s3', service_name='cm_s3', cluster_name='myCluster'):
self.raz_url = raz_url
self.raz_url = raz_url.strip('/')
self.raz_token = raz_token
self.username = username
if service == 's3' or True: # True until ABFS option
Expand Down

0 comments on commit bb54cd4

Please sign in to comment.