=htp #19397,#19842 fix content negotiation for non 2xx and Accept handling

This commit is contained in:
Konrad Malawski 2016-02-23 02:38:17 +01:00
parent 2d8ed0a8e2
commit a253014ef4
6 changed files with 83 additions and 14 deletions

View file

@ -677,7 +677,10 @@ object MiMa extends AutoPlugin {
ProblemFilters.exclude[ReversedMissingMethodProblem]("akka.http.scaladsl.model.ResponseEntity.withoutSizeLimit"),
// #20014 should have been final always
ProblemFilters.exclude[FinalClassProblem]("akka.http.scaladsl.model.EntityStreamSizeException")
ProblemFilters.exclude[FinalClassProblem]("akka.http.scaladsl.model.EntityStreamSizeException"),
// #19849 content negotiation fixes
ProblemFilters.exclude[FinalClassProblem]("akka.http.scaladsl.marshalling.Marshal$UnacceptableResponseContentTypeException")
)
)
}