We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6282b08 commit 11a69d7Copy full SHA for 11a69d7
renku/ui/service/gateways/gitlab_api_provider.py
@@ -58,7 +58,7 @@ def download_files_from_api(
58
59
git_data = GitURL.parse(remote)
60
try:
61
- gl = gitlab.Gitlab(git_data.instance_url, private_token=token)
+ gl = gitlab.Gitlab(git_data.instance_url, oauth_token=token)
62
project = gl.projects.get(f"{git_data.owner}/{git_data.name}")
63
except gitlab.GitlabAuthenticationError:
64
# NOTE: Invalid or expired tokens fail even on public projects. Let's give it a try without tokens
0 commit comments