Add store phase and update Arpnip::Nodes to use it (#538)

* add store phase

* rework arpnip nodes to use store phase

* add late phase too so that users can still access content in db
This commit is contained in:
Oliver Gorwits
2019-03-15 05:20:57 +00:00
committed by GitHub
parent 154db22ac0
commit b5329d228b
4 changed files with 52 additions and 33 deletions

View File

@@ -69,7 +69,7 @@ sub run {
# run other phases
if ($job->check_passed) {
$self->run_workers("workers_${_}") for qw/early main user/;
$self->run_workers("workers_${_}") for qw/early main user store late/;
}
};