Skip to content

Commit

Permalink
[Streams] Fix ShellRegistered message deadletter log (#7376)
Browse files Browse the repository at this point in the history
  • Loading branch information
Arkatufus authored Nov 1, 2024
1 parent 3700809 commit 699aff2
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,9 @@ public AsyncInput(GraphInterpreterShell shell, GraphStageLogic logic, object @ev
public GraphInterpreterShell Shell { get; }
}

private class ShellRegistered
// This is the Resume internal API message in JVM, it is used to prevent/short circuit recursive calls
// inside a stream. Harmless when dead-lettered.
private class ShellRegistered: IDeadLetterSuppression
{
public static readonly ShellRegistered Instance = new();
private ShellRegistered()
Expand Down

0 comments on commit 699aff2

Please sign in to comment.