Last active
August 29, 2015 14:00
-
-
Save ijuma/11222642 to your computer and use it in GitHub Desktop.
git
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
object SolrClient { | |
object Response { | |
// This was fine in 2.10, but had to be renamed in 2.11 | |
def apply[T](queryResponse: QueryResponse, page: Page)(documentsMapper: SolrDocument => T = identity[SolrDocument] _): Response[T] = ... | |
} | |
case class Response[T]( | |
documents: Seq[T], | |
page: Page, | |
spellCheck: Option[SpellCheckResponse] = None | |
) | |
} |
Sorry, I just fixed it. My initial version was wrong. :)
No prob. Can repro now. Looking into it.
Thanks!
This was due to the fix for SI-8157 Make overloading, defaults restriction PolyType aware.
I'll included it in the important changes section
Great, thanks.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Seems like some kind of separate compilation problem, because I can't repro with: