Commit 73d686a9 authored by Markus Kalkbrenner's avatar Markus Kalkbrenner Committed by Markus Kalkbrenner
Browse files

Issue #3063739 by mkalkbrenner: Some decisions depend on Solr field prefixes...

Issue #3063739 by mkalkbrenner: Some decisions depend on Solr field prefixes which is wrong for Solr Document Datasource
parent 84379972
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -68,6 +68,10 @@ install:
  #- curl https://www.drupal.org/files/issues/2018-12-20/3021717.patch | patch -p1
  #- cd $TRAVIS_BUILD_DIR/../drupal
  #########################################
  # to be removed once #3059312 is resolved
  - cd modules/contrib/search_api
  - curl https://www.drupal.org/files/issues/2019-06-25/3059312_allow_Solr_to_skip_regression_test_14.patch | patch -p1
  - cd $TRAVIS_BUILD_DIR/../drupal

before_script:
  - export SOLR_INDEX_WAIT=4
+1 −1
Original line number Diff line number Diff line
@@ -728,7 +728,7 @@ class SearchApiSolrBackend extends BackendPluginBase implements SolrBackendInter
          foreach ($this->getMaxDocumentVersions() as $site_hash => $indexes) {
            if ('#total' === $site_hash) {
              $info[] = [
                'label' => $this->t('Max docuemnt _version_ for this server'),
                'label' => $this->t('Max document _version_ for this server'),
                'info' => $indexes,
              ];
            }
+3 −0
Original line number Diff line number Diff line
@@ -33,4 +33,7 @@ class AddHierarchyTest extends SearchApiAddHierarchyTest {
    $this->enableSolrServer('search_api_solr_test', '/config/install/search_api.server.solr_search_server.yml');
  }

  public function testRegression3059312() {
    $this->markTestSkipped('This test makes no sense on Solr.');
  }
}