rename init stage to check
This commit is contained in:
@@ -10,10 +10,10 @@ register_worker({ stage => 'second' }, sub {
|
||||
return Status->done('Test (second) ran successfully.');
|
||||
});
|
||||
|
||||
register_worker({ stage => 'init' }, sub {
|
||||
register_worker({ stage => 'check' }, sub {
|
||||
my ($job, $workerconf) = @_;
|
||||
debug 'Test (init) ran successfully.';
|
||||
return Status->done('Test (init) ran successfully.');
|
||||
debug 'Test (check) ran successfully.';
|
||||
return Status->done('Test (check) ran successfully.');
|
||||
});
|
||||
|
||||
register_worker({ stage => 'first' }, sub {
|
||||
|
||||
Reference in New Issue
Block a user