Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
olegbilovus committed May 25, 2023
1 parent b6f3015 commit 64ebaa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chsystem/web/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def __init__(self, url, cert_f=None, key_f=None, cf_client_id=None, cf_client_se
self.url = url

def check_valid_conn(self) -> bool:
res = self.session.get(self.url)
res = self.session.get(f'{self.url}/')
return res.status_code < 400

def get_servers_names(self):
Expand Down

0 comments on commit 64ebaa7

Please sign in to comment.