You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_logger.LogDebug("Producing message {Message} of Type {MessageType} on Path {Path} with Size {MessageSize}",envelope.Message,messageType?.Name,path,messagePayload?.Length??0);
121
+
_logger.LogDebug("Producing message {Message} of Type {MessageType} on Path {Path} with Size {MessageSize}",envelope.Message,messageType?.Name,path,messagePayload?.Length??0);
_logger.LogDebug("Delivered item {Message} of type {MessageType} to {Path}",item.Envelope.Message,item.Envelope.MessageType?.Name,path);
192
189
193
-
return([item.Envelope],null);
190
+
returnnew([item.Envelope],null);
194
191
}
195
192
catch(Exceptionex)
196
193
{
197
194
_logger.LogDebug(ex,"Producing message {Message} of type {MessageType} to path {Path} resulted in error {Error}",item.Envelope.Message,item.Envelope.MessageType?.Name,path,ex.Message);
198
-
return([],ex);
195
+
returnnew([],ex);
199
196
}
200
197
}
201
198
@@ -233,12 +230,12 @@ await Retry.WithDelay(
233
230
batch=null;
234
231
}
235
232
236
-
return(dispatched,null);
233
+
returnnew(dispatched,null);
237
234
}
238
235
catch(Exceptionex)
239
236
{
240
237
_logger.LogError(ex,"Producing message batch to path {Path} resulted in error {Error}",path,ex.Message);
0 commit comments