File tree Expand file tree Collapse file tree
src/DurableTask.ServiceBus Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1599,11 +1599,10 @@ async Task<OrchestrationRuntimeState> GetSessionStateAsync(IMessageSession sessi
15991599 if ( state == null || state . Length == 0 )
16001600 {
16011601 TraceHelper . TraceSession (
1602- TraceEventType . Warning ,
1602+ TraceEventType . Information ,
16031603 "ServiceBusOrchestrationService-GetSessionState-EmptyState" ,
16041604 session . SessionId ,
1605- $ "Session '{ session . SessionId } ' has null or empty state ({ state ? . Length ?? 0 } bytes). " +
1606- "This may indicate a new session or a ghost session created by a session ID casing change." ) ;
1605+ $ "Session '{ session . SessionId } ' has null or empty state ({ state ? . Length ?? 0 } bytes).") ;
16071606 }
16081607
16091608 using ( Stream rawSessionStream = state != null ? new MemoryStream ( state ) : null )
You can’t perform that action at this time.
0 commit comments