From e829f7c16724d7d0b317125b1fa35650a3a34e37 Mon Sep 17 00:00:00 2001 From: Phil Tyler Date: Tue, 12 Nov 2024 19:35:21 -0800 Subject: [PATCH] Reload server, not reload core --- src/Plugin/SolrConnector/PantheonSolrConnector.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Plugin/SolrConnector/PantheonSolrConnector.php b/src/Plugin/SolrConnector/PantheonSolrConnector.php index f5ec5939..8d263452 100644 --- a/src/Plugin/SolrConnector/PantheonSolrConnector.php +++ b/src/Plugin/SolrConnector/PantheonSolrConnector.php @@ -408,7 +408,7 @@ public function reloadCore() { if (!$sp instanceof SchemaPoster) { throw new \RuntimeException('Unable to instantiate Schema Poster.'); } - $sp->reloadCore(); + $sp->reloadServer(); $this->logger->info('Core reloaded.'); return TRUE; }