File tree 3 files changed +4
-4
lines changed
smithy4play/src/main/scala/de/innfactory/smithy4play
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
import sbt .Compile
2
2
import sbt .Keys .cleanFiles
3
- val releaseVersion = sys.env.getOrElse(" TAG" , " 0.4.4-Delta " )
3
+ val releaseVersion = sys.env.getOrElse(" TAG" , " 1.0.0-Gamma " )
4
4
addCommandAlias(" publishSmithy4Play" , " smithy4play/publish" )
5
5
addCommandAlias(" publishLocalSmithy4Play" , " smithy4play/publishLocal" )
6
6
addCommandAlias(" generateCoverage" , " clean; coverage; test; coverageReport" )
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ object CodecDecider {
61
61
encoder(contentType).mapK(
62
62
blobPipe
63
63
),
64
- _ => true
64
+ _ => false
65
65
)
66
66
67
67
def httpResponseDecoder (
@@ -95,7 +95,7 @@ object CodecDecider {
95
95
encoder(contentType).mapK(
96
96
httpRequestBlobPipe
97
97
),
98
- _ => true
98
+ _ => false
99
99
)
100
100
101
101
private val httpRequestBodyLift : Writer [HttpResponse [Blob ], Blob ] =
Original file line number Diff line number Diff line change @@ -12,6 +12,6 @@ trait RequestClient {
12
12
method : String ,
13
13
path : String ,
14
14
headers : Map [CaseInsensitive , Seq [String ]],
15
- body : EndpointRequest
15
+ request : EndpointRequest
16
16
): Future [HttpResponse [Blob ]]
17
17
}
You can’t perform that action at this time.
0 commit comments