Adding how to use builtin scheduler in README#209
Open
balajeerc wants to merge 1 commit intopricingassistant:masterfrom
Open
Adding how to use builtin scheduler in README#209balajeerc wants to merge 1 commit intopricingassistant:masterfrom
balajeerc wants to merge 1 commit intopricingassistant:masterfrom
Conversation
maelorn
suggested changes
Dec 13, 2018
Contributor
maelorn
left a comment
There was a problem hiding this comment.
Thanks for pointing this out! Could you change include the two changes I've mentioned before the merge ?
|
|
||
| ### Run it via the built-in scheduler | ||
|
|
||
| Create a `schedule.py` file with the following code: |
Contributor
There was a problem hiding this comment.
If you want you can just edit the default config file which is mrq-config.py
| Run the schedule using: | ||
|
|
||
| ``` | ||
| mrq-run --scheduler --config schedule.py |
Contributor
There was a problem hiding this comment.
Here you should run a scheduler worker with mrq-worker --scheduler fetch_queue . This will spawn a [scheduler greenlet](https://github.com/pricingassistant/mrq/blob/master/mrq/worker.py#L141 that will run the scheduler every SCHEDULER_INTERVAL s)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
A small snippet in the README showing how to use the builtin scheduler. Currently this information needs to be gleaned by looking at the tests.