Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes for runtime issues noticed in tests with main branch #1430

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions Classes/Controller/OaiPmhController.php
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ protected function verbGetRecord()
*/
protected function verbIdentify()
{
$library = $this->libraryRepository->findByUid($this->settings['library']);
$library = $this->libraryRepository->findByUid($this->settings['library'] ?? 0);

$oaiIdentifyInfo = [];

Expand Down Expand Up @@ -642,7 +642,12 @@ protected function fetchDocumentSet(): array

$solrQuery .= ' AND timestamp:[' . $from . ' TO ' . $until . ']';

$solr = Solr::getInstance($this->settings['solrcore']);
$solrcore = $this->settings['solrcore'] ?? false;
if (!$solrcore) {
$this->logger->error('Solr core not configured');
return $documentSet;
}
$solr = Solr::getInstance($solrcore);
if (!$solr->ready) {
$this->logger->error('Apache Solr not available');
return $documentSet;
Expand Down
Loading