Skip to content

Commit

Permalink
chore: missing interpolator (#1992)
Browse files Browse the repository at this point in the history
  • Loading branch information
patriknw authored Oct 2, 2024
1 parent 809e734 commit 700b12e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ object @{serviceName}Handler {
case request if isThisService(request.uri.path) =>
request.uri.path.tail.tail match {
case model.Uri.Path.Slash(model.Uri.Path.Segment(method, model.Uri.Path.Empty)) => handle(spi.onRequest(prefix, method, request), method)
case _ => scala.concurrent.Future.failed(new akka.grpc.GrpcServiceException(io.grpc.Status.INVALID_ARGUMENT.withDescription("Invalid gRPC request path [${request.uri.path}]")))
case _ => scala.concurrent.Future.failed(new akka.grpc.GrpcServiceException(io.grpc.Status.INVALID_ARGUMENT.withDescription(s"Invalid gRPC request path [${request.uri.path}]")))
}
}
}
Expand Down

0 comments on commit 700b12e

Please sign in to comment.