-
Notifications
You must be signed in to change notification settings - Fork 440
Closed
Labels
enhancementNew feature or request.New feature or request.t-toolingIssues with this label are in the ownership of the tooling team.Issues with this label are in the ownership of the tooling team.
Milestone
Description
Follow-up issue to #1175.
Add requests context helper
Currently, there is no option for specifying the destination (always the default RQ); but we can add it.
# Default RQ
await context.add_requests(requests)
# Global scope RQ (name)
await context.add_requests(requests, rq_name='rq_global_scope')
# Run scope RQ (alias)
await context.add_requests(requests, rq_alias='rq_run_scope')
Enqueue links context helper
Currently, there is no option for specifying the destination (always the default RQ); but we can add it.
# Default RQ
await context.enqueue_links()
# Global scope RQ (name)
await context.enqueue_links(rq_name='rq_global_scope')
# Run scope RQ (alias)
await context.enqueue_links(rq_alias='rq_run_scope')
Metadata
Metadata
Assignees
Labels
enhancementNew feature or request.New feature or request.t-toolingIssues with this label are in the ownership of the tooling team.Issues with this label are in the ownership of the tooling team.