Skip to content

Commit

Permalink
fix: set empty structs to true
Browse files Browse the repository at this point in the history
  • Loading branch information
MoeQuadrat committed Feb 7, 2024
1 parent 7fa3871 commit db36e45
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import sbt.Compile
import sbt.Keys.cleanFiles
val releaseVersion = sys.env.getOrElse("TAG", "0.4.4-Delta")
val releaseVersion = sys.env.getOrElse("TAG", "1.0.0-Gamma")
addCommandAlias("publishSmithy4Play", "smithy4play/publish")
addCommandAlias("publishLocalSmithy4Play", "smithy4play/publishLocal")
addCommandAlias("generateCoverage", "clean; coverage; test; coverageReport")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ object CodecDecider {
encoder(contentType).mapK(
blobPipe
),
_ => true
_ => false
)

def httpResponseDecoder(
Expand Down Expand Up @@ -95,7 +95,7 @@ object CodecDecider {
encoder(contentType).mapK(
httpRequestBlobPipe
),
_ => true
_ => false
)

private val httpRequestBodyLift: Writer[HttpResponse[Blob], Blob] =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ trait RequestClient {
method: String,
path: String,
headers: Map[CaseInsensitive, Seq[String]],
body: EndpointRequest
request: EndpointRequest
): Future[HttpResponse[Blob]]
}

0 comments on commit db36e45

Please sign in to comment.