Skip to content

Commit ececca9

Browse files
author
Guido Gustavo Pollitzer
committed
Update the "task-flow" dependency after adding methods to TimersExtension.Assistant
1 parent 33c4d83 commit ececca9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ lazy val root = (project in file("."))
99
)
1010

1111
ThisBuild / libraryDependencies ++= Seq(
12-
"readren" %% "taskflow-core" % "0.2.2-SNAPSHOT",
12+
"readren" %% "taskflow-core" % "0.2.3-SNAPSHOT",
1313
"org.typelevel" %% "scalacheck-effect" % "1.0.4" % Test,
1414
"org.typelevel" %% "scalacheck-effect-munit" % "1.0.4" % Test
1515
)

src/main/scala/pruebas/ExampleWithoutAskCapability.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ object ExampleWithoutAskCapability {
3333
val userEndpoint = userReactant.endpointProvider.local[SumResult]
3434

3535
{
36-
case _: Started.type => endpointForCalculator.tell(Sum(3, 7, userEndpoint))
36+
case _: Started.type =>
37+
endpointForCalculator.tell(Sum(3, 7, userEndpoint))
3738
Continue
3839

3940
case SumResult(result) =>

0 commit comments

Comments
 (0)