Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

Commit

Permalink
Merge branch 'master' into get_upstream_changes
Browse files Browse the repository at this point in the history
* master: (37 commits)
  A3S-2518 Remove print line and document the process of generating a new version of MRQ (#12)
  A3S-1593 - if "retry_current_job" is call outside of an MRQ context, then raise exception. (#9)
  Upgrade psutil to 5.8.0 (#8)
  Sentry cleanup (#7)
  Version 0.9.23 and redis password
  Specific log description content type
  Update requirements and dockerfile
  Update library psutil
  Update dockerfile
  Update dockerfile
  Fix pypy portable url
  Increasing MRQ lib version
  Add Redis SSL support
  Increasing MRQ lib version
  Adding sort
  Adding get latest jobs based on a query
  minor fix bundle
  042619IC Update Version
  Add the status field in the search for exceptions
  Add status maxretries in endpoint '/api/datatables/taskexceptions'
  ...
  • Loading branch information
agitelzon committed Mar 1, 2023
2 parents 5db4dc5 + 3389b17 commit 64586a9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,17 @@ This was a preview on the very basic features of MRQ. What makes it actually use
These features will be demonstrated in a future example of a simple web crawler.


## How to compile a new version of MRQ
- Go to mrq/version.py file and update from 0.9.28.1 to 0.9.29 (for example)
- Commit and pushes the last changes
- Go to in the master branch (after merge pull request)
- Execute the command `python setup.py sdist`
- Make sure you have installed the python twine package (`pip install twine`).
- Execute the twine command to upload the new version of mrq to pypi.org (`twine upload dist/mrq-custom-0.9.29.tar.gz`)
- In the previous step you will be asked for the pypi.org credentials are in 1password, you must request them in #password_requests
- Update all applications that use MRQ with this version in their requirements.txt


# More

Full documentation is available on [readthedocs](http://mrq.readthedocs.org/en/latest/)
1 change: 0 additions & 1 deletion mrq/basetasks/cleaning.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ class RequeueRetryJobs(Task):
max_concurrency = 1

def run(self, params):
print("IN")
return run_task("mrq.basetasks.utils.JobAction", {
"status": "retry",
"dateretry": {"$lte": datetime.datetime.utcnow()},
Expand Down

0 comments on commit 64586a9

Please sign in to comment.