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

WIP: Experimental hack for DDev #182

Open
wants to merge 1 commit into
base: 8.x
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
13 changes: 12 additions & 1 deletion src/Services/PantheonGuzzle.php
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,18 @@ public function requestUriAlterForPantheonEnvironment(RequestInterface $request)
return !empty($item);
});
$uri = $uri->withPath('/' . ltrim(implode('/', $path_parts), '/'));
return $request->withUri($uri);

// This is an experimental hack to get Solr + DDev working.
// Some calls to Solr do not include the name of the core in the URL.
// I don't know why some do and some don't.
// But the errors seem to go away when the core name is included.
$path = $uri->getPath();
//if the $uri path contains /solr but not /solr/dev then replace /solr with /solr/dev
if (!isset($_ENV['PANTHEON_ENVIRONMENT']) && strpos($path, '/solr') !== FALSE && strpos($path, '/solr/dev') === FALSE) {
$uri = $uri->withPath(str_replace('/solr', '/solr/dev', $path));
}

return $request->withUri($uri);
}

}
Loading