Skip to content

Commit

Permalink
add sleep to merge, also reduce to 1 sec
Browse files Browse the repository at this point in the history
  • Loading branch information
shaneknapp committed Oct 25, 2024
1 parent f55673a commit 97070c6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions manage_repos/manage_repos.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,9 @@ def merge(args):
print()
continue

# sleep for 1 seconds to keep us from being rate limited
time.sleep(1)


def patch(args):
"""
Expand Down Expand Up @@ -260,8 +263,8 @@ def pr(args):
print()
continue

# sleep for 2 seconds to keep us from being rate limited
time.sleep(2)
# sleep for 1 seconds to keep us from being rate limited
time.sleep(1)


def push(args):
Expand Down

0 comments on commit 97070c6

Please sign in to comment.