8000 More retries by thomasrockhu · Pull Request #273 · codecov/codecov-python · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on May 21, 2025. It is now read-only.

More retries #273

Merged
merged 9 commits into from
Jun 12, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
return
  • Loading branch information
thomasrockhu committed Jun 11, 2020
commit dbb29fbd3f3ea110344d0775fdc8531683380f12
2 changes: 1 addition & 1 deletion codecov/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ def generate_toc(root):


def retry_upload(url, request_method, **kwargs):
request_method(url, **kwargs)
return request_method(url, **kwargs)


def main(*argv, **kwargs):
Expand Down
0