Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96454385
PhabricatorDaemonManagementRestartWorkflow.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, 21:57
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Dec 28, 21:57 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23172076
Attached To
rPH Phabricator
PhabricatorDaemonManagementRestartWorkflow.php
View Options
<?php
final
class
PhabricatorDaemonManagementRestartWorkflow
extends
PhabricatorDaemonManagementWorkflow
{
protected
function
didConstruct
()
{
$this
->
setName
(
'restart'
)
->
setSynopsis
(
pht
(
'Stop, then start the standard daemon loadout.'
))
->
setArguments
(
array
(
array
(
'name'
=>
'graceful'
,
'param'
=>
'seconds'
,
'help'
=>
pht
(
'Grace period for daemons to attempt a clean shutdown, in '
.
'seconds. Defaults to __15__ seconds.'
),
'default'
=>
15
,
),
array
(
'name'
=>
'gently'
,
'help'
=>
pht
(
'Ignore running processes that look like daemons but do not '
.
'have corresponding PID files.'
),
),
array
(
'name'
=>
'force'
,
'help'
=>
pht
(
'Also stop running processes that look like daemons but do '
.
'not have corresponding PID files.'
),
),
$this
->
getAutoscaleReserveArgument
(),
));
}
public
function
execute
(
PhutilArgumentParser
$args
)
{
$err
=
$this
->
executeStopCommand
(
array
(),
array
(
'graceful'
=>
$args
->
getArg
(
'graceful'
),
'force'
=>
$args
->
getArg
(
'force'
),
'gently'
=>
$args
->
getArg
(
'gently'
),
));
if
(
$err
)
{
return
$err
;
}
return
$this
->
executeStartCommand
(
array
(
'reserve'
=>
(
float
)
$args
->
getArg
(
'autoscale-reserve'
,
0.0
),
));
}
}
Event Timeline
Log In to Comment