fix(django_apps): misplaced timers option
All checks were successful
Check meta / check_dns (pull_request) Successful in 16s
Check meta / check_meta (pull_request) Successful in 16s
Check workflows / check_workflows (pull_request) Successful in 17s
Run pre-commit on all files / pre-commit (push) Successful in 37s
Build all the nodes / netaccess01 (pull_request) Successful in 20s
Build all the nodes / netcore01 (pull_request) Successful in 20s
Build all the nodes / netcore02 (pull_request) Successful in 19s
Build all the nodes / ap01 (pull_request) Successful in 58s
Build all the nodes / bridge01 (pull_request) Successful in 1m36s
Build all the nodes / rescue01 (pull_request) Successful in 1m39s
Build all the nodes / geo02 (pull_request) Successful in 2m13s
Build all the nodes / build01 (pull_request) Successful in 2m20s
Build all the nodes / hypervisor01 (pull_request) Successful in 2m32s
Build all the nodes / geo01 (pull_request) Successful in 2m35s
Build the shell / build-shell (pull_request) Successful in 24s
Build all the nodes / hypervisor03 (pull_request) Successful in 2m43s
Run pre-commit on all files / pre-commit (pull_request) Successful in 25s
Build all the nodes / tower01 (pull_request) Successful in 2m13s
Build all the nodes / hypervisor02 (pull_request) Successful in 2m49s
Build all the nodes / web02 (pull_request) Successful in 1m42s
Build all the nodes / storage01 (pull_request) Successful in 2m43s
Build all the nodes / vault01 (pull_request) Successful in 2m44s
Build all the nodes / compute01 (pull_request) Successful in 3m22s
Build all the nodes / web01 (pull_request) Successful in 2m26s
Build all the nodes / web03 (pull_request) Successful in 1m49s

This commit is contained in:
catvayor 2025-02-24 16:10:59 +01:00
parent 09ffafade0
commit 998d45e18d
Signed by: lbailly
GPG key ID: CE3E645251AC63F3

View file

@ -322,15 +322,15 @@ in
Extra services to run in parallel of the application.
May be used to run background tasks and/or workers.
'';
};
timers = mkOption {
type = attrs;
default = { };
description = ''
Extra oneshot services to run in parallel of the application.
Be aware that `startAt` should be included.
'';
};
timers = mkOption {
type = attrs;
default = { };
description = ''
Extra oneshot services to run in parallel of the application.
Be aware that `startAt` should be included.
'';
};
manageScript = mkOption {