Skip to content

Commit

Permalink
chore: fmt and excludes
Browse files Browse the repository at this point in the history
  • Loading branch information
Roiocam committed Jul 5, 2024
1 parent 419145a commit 7793feb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
ProblemFilters.exclude[MissingFieldProblem]("org.apache.pekko.actor.typed.scaladsl.Behaviors.Supervise")
ProblemFilters.exclude[MissingClassProblem]("org.apache.pekko.actor.typed.scaladsl.Behaviors$Supervise$")
ProblemFilters.exclude[MissingClassProblem]("org.apache.pekko.actor.typed.scaladsl.Behaviors$Supervise")
ProblemFilters.exclude[MissingClassProblem]("org.apache.pekko.actor.typed.javadsl.Behaviors$Supervise")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,8 @@ private SupervisingActor(ActorContext<String> context) {
super(context);
child =
context.spawn(
Behaviors.supervise(SupervisedActor.create()).onAnyFailure(SupervisorStrategy.restart()),
Behaviors.supervise(SupervisedActor.create())
.onAnyFailure(SupervisorStrategy.restart()),
"supervised-actor");
}

Expand Down

0 comments on commit 7793feb

Please sign in to comment.