We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d6122fe + ae0ae1b commit 3d0ab46Copy full SHA for 3d0ab46
Classes/Flowpack/ElasticSearch/ContentRepositoryQueueIndexer/Command/NodeIndexQueueCommandController.php
@@ -92,10 +92,11 @@ public function buildCommand($workspace = NULL) {
92
$this->indexWorkspace($workspace, $indexPostfix);
93
}
94
$updateAliasJob = new UpdateAliasJob($indexPostfix);
95
- $this->jobManager->queue('Flowpack.ElasticSearch.ContentRepositoryQueueIndexer', $updateAliasJob);
+ $queueName = 'Flowpack.ElasticSearch.ContentRepositoryQueueIndexer';
96
+ $this->jobManager->queue($queueName, $updateAliasJob);
97
98
$this->outputLine();
- $this->outputLine('Indexing jobs created with success ...');
99
+ $this->outputLine(sprintf('Indexing jobs created for queue %s with success ...', $queueName));
100
101
102
/**
0 commit comments