FIX: SearchUpdateQueuedJobProcessor JobType NULL

getJobType method returns null as querying a string rather than a namespaced class.
This commit is contained in:
Naomi Guyer 2020-02-10 16:20:29 +13:00 committed by GitHub
parent 6c59fcfdf0
commit 957037fc43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ class SearchUpdateQueuedJobProcessor extends SearchUpdateBatchedProcessor implem
public function getJobType()
{
return Config::inst()->get('SearchUpdateQueuedJobProcessor', 'reindex_queue');
return Config::inst()->get(SearchUpdateQueuedJobProcessor::class, 'reindex_queue');
}
public function jobFinished()