Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F109911143
PhabricatorTaskmasterDaemon.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Apr 23, 22:57
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Apr 25, 22:57 (2 d)
Engine
blob
Format
Raw Data
Handle
25769091
Attached To
rPH Phabricator
PhabricatorTaskmasterDaemon.php
View Options
<?php
final
class
PhabricatorTaskmasterDaemon
extends
PhabricatorDaemon
{
public
function
run
()
{
$sleep
=
0
;
do
{
$tasks
=
id
(
new
PhabricatorWorkerLeaseQuery
())
->
setLimit
(
1
)
->
execute
();
if
(
$tasks
)
{
foreach
(
$tasks
as
$task
)
{
$id
=
$task
->
getID
();
$class
=
$task
->
getTaskClass
();
$this
->
log
(
"Working on task {$id} ({$class})..."
);
$task
=
$task
->
executeTask
();
$ex
=
$task
->
getExecutionException
();
if
(
$ex
)
{
if
(
$ex
instanceof
PhabricatorWorkerPermanentFailureException
)
{
$this
->
log
(
"Task {$id} failed permanently."
);
}
else
if
(
$ex
instanceof
PhabricatorWorkerYieldException
)
{
$this
->
log
(
pht
(
'Task %s yielded.'
,
$id
));
}
else
{
$this
->
log
(
"Task {$id} failed!"
);
throw
new
PhutilProxyException
(
"Error while executing task ID {$id} from queue."
,
$ex
);
}
}
else
{
$this
->
log
(
"Task {$id} complete! Moved to archive."
);
}
}
$sleep
=
0
;
}
else
{
$sleep
=
min
(
$sleep
+
1
,
30
);
}
$this
->
sleep
(
$sleep
);
}
while
(
true
);
}
}
Event Timeline
Log In to Comment