Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c0f0a58

Browse files
authored
Remove celery rate limit (#128)
1 parent a059887 commit c0f0a58

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

miss_islington/tasks.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
)
1616

1717

18-
@app.task(rate_limit="1/m")
18+
@app.task()
1919
def setup_cpython_repo():
2020
print("Setting up CPython repository")
2121
if "cpython" not in os.listdir("."):
@@ -37,7 +37,7 @@ def setup_cpython_repo():
3737
print("cpython directory already exists")
3838

3939

40-
@app.task(rate_limit="1/m")
40+
@app.task()
4141
def backport_task(commit_hash, branch, *, issue_number, created_by, merged_by):
4242
"""Backport a commit into a branch."""
4343
if not util.is_cpython_repo():

0 commit comments

Comments
 (0)