Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F103745876
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
Tue, Mar 4, 11:14
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Mar 6, 11:14 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24654827
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 **phd launch** to '
.
'customize which daemons are launched.'
))
->
setArguments
(
array
(
array
(
'name'
=>
'keep-leases'
,
'help'
=>
pht
(
'By default, **phd start** will free all task leases held by '
.
'the daemons. With this flag, this step will be skipped.'
),
),
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