Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
rogeralsing committed Apr 26, 2024
1 parent d300571 commit 12e6300
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Proto.Actor/EventStream/EventStream.cs
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ public EventStreamSubscription<T> Subscribe<TMsg>(
/// <returns>A new subscription that can be used to unsubscribe</returns>
public EventStreamSubscription<T> Subscribe<TMsg>(ISenderContext context, params PID[] pids) where TMsg : T
{
var caller = pids.First().ToDiagnosticString();
var caller = pids.First().ToDiagnosticString().Split("/").Last();
var sub = new EventStreamSubscription<T>(
this,
Dispatchers.SynchronousDispatcher,
Expand Down

0 comments on commit 12e6300

Please sign in to comment.