Skip to content

Commit cafb3aa

Browse files
authored
Update natchez-core, natchez-jaeger to 0.3.1
1 parent c6e0b87 commit cafb3aa

File tree

6 files changed

+31
-12
lines changed

6 files changed

+31
-12
lines changed

modules/haskell-integration-tests/src/test/scala/integrationtest/protobuf/HaskellServerScalaClientSpec.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package integrationtest.protobuf
1818

1919
import cats.effect.{IO, Resource}
20-
import fs2._
20+
import fs2.Stream
2121
import higherkindness.mu.rpc._
2222
import higherkindness.mu.rpc.protocol.Empty
2323
import integrationtest._

modules/health-check/src/main/scala/higherkindness/mu/rpc/healthcheck/HealthService.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import _root_.fs2._
2323
import _root_.fs2.concurrent._
2424
import _root_.grpc.health.v1.health._
2525
import _root_.grpc.health.v1.health.HealthCheckResponse.ServingStatus
26-
import io.grpc.{Status, StatusException}
26+
import _root_.io.grpc.{Status, StatusException}
2727

2828
trait HealthService[F[_]] extends Health[F] {
2929

modules/service/src/main/scala/higherkindness/mu/rpc/internal/tracing/implicits.scala

+3-2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import higherkindness.mu.rpc.internal.context.{ClientContext, ClientContextMetaD
2222
import io.grpc.Metadata.{ASCII_STRING_MARSHALLER, BINARY_HEADER_SUFFIX, Key}
2323
import io.grpc.{CallOptions, Channel, Metadata, MethodDescriptor}
2424
import natchez.{EntryPoint, Kernel, Span}
25+
import org.typelevel.ci.CIString
2526

2627
import scala.jdk.CollectionConverters._
2728

@@ -55,7 +56,7 @@ object implicits {
5556
def tracingKernelToHeaders(kernel: Kernel): Metadata = {
5657
val headers = new Metadata()
5758
kernel.toHeaders.foreach { case (k, v) =>
58-
headers.put(Key.of(k, ASCII_STRING_MARSHALLER), v)
59+
headers.put(Key.of(k.toString, ASCII_STRING_MARSHALLER), v)
5960
}
6061
headers
6162
}
@@ -66,7 +67,7 @@ object implicits {
6667
.asScala
6768
.collect {
6869
case k if !k.endsWith(BINARY_HEADER_SUFFIX) =>
69-
k -> headers.get(Key.of(k, ASCII_STRING_MARSHALLER))
70+
CIString(k) -> headers.get(Key.of(k, ASCII_STRING_MARSHALLER))
7071
}
7172
.toMap
7273
Kernel(asciiHeaders)

modules/tests/rpc/proto/src/test/scala/higherkindness/mu/tests/rpc/ProtobufRPCTest.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
package higherkindness.mu.tests.rpc
1818

19-
import _root_.fs2._
19+
import fs2.Stream
2020
import cats.effect.{IO, Resource}
2121
import higherkindness.mu.rpc.ChannelForAddress
2222
import higherkindness.mu.rpc.protocol.{Gzip, Identity}

modules/tests/src/test/scala-2/higherkindness/mu/rpc/protocol/Tracing.scala

+24-6
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import natchez._
2222

2323
import java.net.URI
2424
import cats.effect.Ref
25+
import org.typelevel.ci.CIString
2526

2627
/*
2728
* A minimal Natchez tracing implementation that accumulates
@@ -47,9 +48,9 @@ object Tracing {
4748
IO.unit // not implemented
4849

4950
def kernel: IO[Kernel] =
50-
IO.pure(Kernel(Map("span-id" -> id.toString)))
51+
IO.pure(Kernel(Map(CIString("span-id") -> id.toString)))
5152

52-
def span(name: String): Resource[IO, Span[IO]] =
53+
override def span(name: String, options: Span.Options): Resource[IO, Span[IO]] =
5354
Resource.make(
5455
for {
5556
spanId <- ref.modify(_.incrementNextSpanId)
@@ -63,12 +64,21 @@ object Tracing {
6364
override def traceUri: IO[Option[URI]] = IO.pure(None)
6465

6566
override def spanId: IO[Option[String]] = IO.pure(Some(id.toString))
67+
68+
override def log(fields: (String, TraceValue)*): IO[Unit] =
69+
IO.unit // not implemented
70+
71+
override def log(event: String): IO[Unit] =
72+
IO.unit // not implemented
73+
74+
override def attachError(err: Throwable, fields: (String, TraceValue)*): IO[Unit] =
75+
IO.unit // not implemented
6676
}
6777

6878
def entrypoint(ref: Ref[IO, TracingData]): EntryPoint[IO] =
6979
new EntryPoint[IO] {
7080

71-
def root(name: String): Resource[IO, Span[IO]] =
81+
override def root(name: String, options: Span.Options): Resource[IO, Span[IO]] =
7282
Resource.make(
7383
for {
7484
spanId <- ref.modify(_.incrementNextSpanId)
@@ -77,12 +87,16 @@ object Tracing {
7787
} yield span
7888
)(span => ref.update(_.append(s"End $span")))
7989

80-
def continue(name: String, kernel: Kernel): Resource[IO, Span[IO]] =
90+
override def continue(
91+
name: String,
92+
kernel: Kernel,
93+
options: Span.Options
94+
): Resource[IO, Span[IO]] =
8195
Resource.make(
8296
for {
8397
parentSpanId <- IO {
8498
kernel.toHeaders
85-
.get("span-id")
99+
.get(CIString("span-id"))
86100
.map(_.toInt)
87101
.getOrElse(throw new Exception("Required trace header not found!"))
88102
}
@@ -92,7 +106,11 @@ object Tracing {
92106
} yield span
93107
)(span => ref.update(_.append(s"End $span")))
94108

95-
def continueOrElseRoot(name: String, kernel: Kernel): Resource[IO, Span[IO]] =
109+
override def continueOrElseRoot(
110+
name: String,
111+
kernel: Kernel,
112+
options: Span.Options
113+
): Resource[IO, Span[IO]] =
96114
continue(name, kernel).recoverWith { case _: Exception =>
97115
root(name)
98116
}

project/ProjectPlugin.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ object ProjectPlugin extends AutoPlugin {
3232
val logback: String = "1.4.5"
3333
val munit: String = "0.7.29"
3434
val munitCE: String = "1.0.7"
35-
val natchez: String = "0.1.6"
35+
val natchez: String = "0.3.1"
3636
val nettySSL: String = "2.0.54.Final"
3737
val paradise: String = "2.1.1"
3838
val pbdirect: String = "0.7.0"

0 commit comments

Comments
 (0)