Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96456957
PhabricatorDaemonManagementStartWorkflow.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
Thu, Dec 26, 22:30
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Dec 28, 22:30 (2 d)
Engine
blob
Format
Raw Data
Handle
23171827
Attached To
rPH Phabricator
PhabricatorDaemonManagementStartWorkflow.php
View Options
<?php
final
class
PhabricatorDaemonManagementStartWorkflow
extends
PhabricatorDaemonManagementWorkflow
{
protected
function
didConstruct
()
{
$this
->
setName
(
'start'
)
->
setSynopsis
(
pht
(
'Start the standard configured collection of Phabricator daemons. '
.
'This is appropriate for most installs. Use **%s** to '
.
'customize which daemons are launched.'
,
'phd launch'
))
->
setArguments
(
array
(
array
(
'name'
=>
'keep-leases'
,
'help'
=>
pht
(
'By default, **%s** will free all task leases held by '
.
'the daemons. With this flag, this step will be skipped.'
,
'phd start'
),
),
array
(
'name'
=>
'force'
,
'help'
=>
pht
(
'Start daemons even if daemons are already running.'
),
),
$this
->
getAutoscaleReserveArgument
(),
));
}
public
function
execute
(
PhutilArgumentParser
$args
)
{
return
$this
->
executeStartCommand
(
array
(
'keep-leases'
=>
$args
->
getArg
(
'keep-leases'
),
'force'
=>
$args
->
getArg
(
'force'
),
'reserve'
=>
(
float
)
$args
->
getArg
(
'autoscale-reserve'
,
0.0
),
));
}
}
Event Timeline
Log In to Comment