Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install the Push Notification feature #2161

Merged
merged 5 commits into from
Sep 14, 2023
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -725,6 +725,15 @@ $jobs[] = [
];
```

{% info_block infoBox "Info" %}

To optimize job execution and manage job concurrency, we recommend configuring and using the following pre-installed Jenkins plugins:

- `Priority Sorter Plugin`: This plugin allows you to set priorities for your Jenkins jobs. You can assign higher priorities to critical jobs, ensuring they are executed before lower-priority jobs.
- `Throttle Concurrent Builds Plugin`: This plugin provides fine-grained control over how many concurrent builds of a job can run. You can use it to limit the number of parallel executions for resource-intensive jobs, preventing overloading your Jenkins environment.

{% endinfo_block %}

{% info_block warningBox "Verification" %}

1. Make sure that push notifications have been correctly sent by checking the `spy_push_notification_subscription_delivery_log` database table. This table contains a record for each unique combination of push notification and push notification subscription.
Expand Down
Loading