add option to disable notify self check
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
1b8d9e9c13
commit
43778d8aae
|
@ -85,6 +85,11 @@ class Notify extends Base {
|
||||||
InputOption::VALUE_REQUIRED,
|
InputOption::VALUE_REQUIRED,
|
||||||
'The directory in the storage to listen for updates in',
|
'The directory in the storage to listen for updates in',
|
||||||
'/'
|
'/'
|
||||||
|
)->addOption(
|
||||||
|
'no-self-check',
|
||||||
|
'',
|
||||||
|
InputOption::VALUE_NONE,
|
||||||
|
'Disable self check on startup'
|
||||||
);
|
);
|
||||||
parent::configure();
|
parent::configure();
|
||||||
}
|
}
|
||||||
|
@ -138,7 +143,11 @@ class Notify extends Base {
|
||||||
|
|
||||||
$path = trim($input->getOption('path'), '/');
|
$path = trim($input->getOption('path'), '/');
|
||||||
$notifyHandler = $storage->notify($path);
|
$notifyHandler = $storage->notify($path);
|
||||||
|
|
||||||
|
if (!$input->getOption('no-self-check')) {
|
||||||
$this->selfTest($storage, $notifyHandler, $verbose, $output);
|
$this->selfTest($storage, $notifyHandler, $verbose, $output);
|
||||||
|
}
|
||||||
|
|
||||||
$notifyHandler->listen(function (IChange $change) use ($mount, $verbose, $output) {
|
$notifyHandler->listen(function (IChange $change) use ($mount, $verbose, $output) {
|
||||||
if ($verbose) {
|
if ($verbose) {
|
||||||
$this->logUpdate($change, $output);
|
$this->logUpdate($change, $output);
|
||||||
|
|
Loading…
Reference in New Issue