I have `
def get_file(git_path, system_path, branch, project_id):
project = gl.projects.get(id=project_id)
with open(system_path, "wb") as save_file:
project.files.raw(file_path=git_path, ref=branch, streamed=True, action=save_file.write)
When I try to upload a file of 500 megabytes, it gives an error "500 Internal Server Error"
I changed the timeout, it didn't help.