Skip to content

Commit

Permalink
runtime 1.3.0-f950e4637
Browse files Browse the repository at this point in the history
  • Loading branch information
patriknw committed Dec 16, 2024
1 parent 9285e42 commit 5991d81
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion akka-javasdk-maven/akka-javasdk-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

<!-- These are dependent on runtime environment and cannot be customized by users -->
<maven.compiler.release>21</maven.compiler.release>
<kalix-runtime.version>1.3.0-03a3a40</kalix-runtime.version>
<kalix-runtime.version>1.3.0-f950e4637</kalix-runtime.version>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<skip.docker>false</skip.docker>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ object EventingTestKitImpl {
}

}

def metadataToSpi(metadata: Option[Metadata]): SpiMetadata =
metadata.map(metadataToSpi).getOrElse(SpiMetadata.empty)

Expand Down
8 changes: 8 additions & 0 deletions akka-javasdk/src/main/scala/akka/javasdk/impl/SdkRunner.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import java.lang.reflect.Constructor
import java.lang.reflect.InvocationTargetException
import java.lang.reflect.Method
import java.util.concurrent.CompletionStage

import scala.annotation.nowarn
import scala.concurrent.ExecutionContext
import scala.concurrent.Future
Expand All @@ -17,6 +18,7 @@ import scala.jdk.FutureConverters._
import scala.jdk.OptionConverters.RichOptional
import scala.reflect.ClassTag
import scala.util.control.NonFatal

import akka.Done
import akka.actor.typed.ActorSystem
import akka.annotation.InternalApi
Expand Down Expand Up @@ -80,6 +82,7 @@ import akka.runtime.sdk.spi.SpiSettings
import akka.runtime.sdk.spi.SpiWorkflow
import akka.runtime.sdk.spi.StartContext
import akka.runtime.sdk.spi.TimedActionDescriptor
import akka.runtime.sdk.spi.UserFunctionError
import akka.runtime.sdk.spi.views.SpiViewDescriptor
import akka.runtime.sdk.spi.WorkflowDescriptor
import akka.stream.Materializer
Expand Down Expand Up @@ -643,6 +646,11 @@ private final class Sdk(
override def workflowDescriptors: Seq[WorkflowDescriptor] =
Sdk.this.workflowDescriptors

override def reportError(err: UserFunctionError): Future[Done] =
Future.successful(Done) // FIXME implemented in other PR

override def healthCheck(): Future[Done] =
Future.successful(Done) // FIXME implemented in other PR
}
}

Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ object Dependencies {
val ProtocolVersionMinor = 1
val RuntimeImage = "gcr.io/kalix-public/kalix-runtime"
// Remember to bump kalix-runtime.version in akka-javasdk-maven/akka-javasdk-parent if bumping this
val RuntimeVersion = sys.props.getOrElse("kalix-runtime.version", "1.3.0-03a3a40")
val RuntimeVersion = sys.props.getOrElse("kalix-runtime.version", "1.3.0-f950e4637")
}
// NOTE: embedded SDK should have the AkkaVersion aligned, when updating RuntimeVersion, make sure to check
// if AkkaVersion and AkkaHttpVersion are aligned
Expand Down

0 comments on commit 5991d81

Please sign in to comment.