Browse Source

Update Finch to 0.27 (#4350)

Vladimir Kostyukov 6 years ago
parent
commit
5689fc53cd

+ 1 - 1
frameworks/Scala/finch/build.sbt

@@ -1,4 +1,4 @@
-lazy val finchVersion = "0.26.0"
+lazy val finchVersion = "0.27.0"
 
 name := """techempower-benchmarks-finch"""
 version := finchVersion

+ 1 - 1
frameworks/Scala/finch/src/main/scala/Main.scala

@@ -31,7 +31,7 @@ object Main extends App with Endpoint.Module[IO] {
   Await.ready(
     Http.server
       .withCompressionLevel(0)
-      .withStack(nilStack)
+      .withStack(nilStack[Request, Response])
       .serve(":9000", service)
   )
 }