Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92756531
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
Sat, Nov 23, 11:31
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Nov 25, 11:31 (2 d)
Engine
blob
Format
Raw Data
Handle
22505946
Attached To
rPH Phabricator
PhabricatorTaskmasterDaemon.php
View Options
<?php
final
class
PhabricatorTaskmasterDaemon
extends
PhabricatorDaemon
{
protected
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
(
pht
(
'Task %s failed permanently: %s'
,
$id
,
$ex
->
getMessage
()));
}
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
(!
$this
->
shouldExit
());
}
}
Event Timeline
Log In to Comment