Add command ‘hydra-queue-runner --status’ to show current status

This commit is contained in:
Eelco Dolstra
2015-06-22 14:06:44 +02:00
parent 44a2b74f5a
commit 4f4141e1db
3 changed files with 145 additions and 54 deletions

View File

@ -531,6 +531,12 @@ create rule IdempotentInsert as on insert to FailedPaths
#endif
create table SystemStatus (
what text primary key not null,
status json not null
);
-- Cache of the number of finished builds.
create table NrBuilds (
what text primary key not null,