Skip to content

Commit b7f5cb0

Browse files
authored
Merge pull request #200 from challgren/defaultall
Defaults the kill input to 'all' so it can be run non-interactive
2 parents da309c1 + 19c2a60 commit b7f5cb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Shell/QueueShell.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ public function kill() {
260260

261261
$options = array_keys($processes);
262262
$options[] = 'all';
263-
$in = $this->in('Process', $options);
263+
$in = $this->in('Process', $options, 'all');
264264

265265
if ($in === 'all') {
266266
foreach ($processes as $process => $timestamp) {

0 commit comments

Comments
 (0)