Skip to content

Commit 73208f4

Browse files
authored
Merge pull request #621 from DagsHub/bug/ls-request-http
Bug: fix typo in RepoAPI._tenacious_ls_request
2 parents 30d1663 + ac9e95c commit 73208f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dagshub/common/api/repo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def __init__(self, repo: str, host: Optional[str] = None, auth: Optional[Any] =
8181

8282
@retry(retry=retry_if_exception_type(LSInitializingError), wait=wait_fixed(3), stop=stop_after_attempt(5))
8383
def _tenacious_ls_request(self, *args, **kwargs):
84-
res = self.http_request(*args, **kwargs)
84+
res = self._http_request(*args, **kwargs)
8585
if res.text.startswith("<!DOCTYPE html>"):
8686
raise LSInitializingError()
8787
elif res.status_code // 100 != 2:

0 commit comments

Comments
 (0)