refactor(core): Enforce range for shutdown priority (no-changelog) (#9944)

This commit is contained in:
Iván Ovejero
2024-07-04 20:26:11 +02:00
committed by GitHub
parent c82579bf76
commit 757feaf585
6 changed files with 42 additions and 9 deletions

View File

@@ -165,3 +165,7 @@ export const ARTIFICIAL_TASK_DATA = {
],
],
};
export const LOWEST_SHUTDOWN_PRIORITY = 0;
export const DEFAULT_SHUTDOWN_PRIORITY = 100;
export const HIGHEST_SHUTDOWN_PRIORITY = 200;