Add support for installing a queue worker #55
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.
Add functionality to automatically register a queue worker for branch preview deployments. This is necessary to process jobs and notifications if your application uses an asynchronous queue like Redis.
add-worker: bool[optional, default:false]worker-connection: string[required if add-worker is true]worker-queue: string | undefined[optional, default:undefinedwhich means use the default queue]new functions in forge.ts (these wrap the relevant Workers API endpoints):
static async createWorker(server: number, site: number, connection: string, queue?: string | undefined)static async listWorkers(server: number, site: number)static async deleteWorkers(server: number, site: number, worker: number)Note: similar to scheduled jobs, Forge automatically cleans up workers when the site is deleted, so while listWorkers and deleteWorkers functions are provided, they are never actually called (due to the potential issue noted with deleting scheduled jobs, though I never tested it with workers)
Note: Users are responsible for including a line to restart the queue worker on push in their deploy script.
README is updated to document the new parameters.
Manual testing performed: