From a6c962ca9909edf9f2abbb32486248cdbba7c57b Mon Sep 17 00:00:00 2001 From: mgravell Date: Fri, 29 Mar 2019 15:55:03 +0000 Subject: [PATCH] save *all* the files --- src/StackExchange.Redis/ConnectionMultiplexer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/StackExchange.Redis/ConnectionMultiplexer.cs b/src/StackExchange.Redis/ConnectionMultiplexer.cs index b4df752ce..15be7213b 100644 --- a/src/StackExchange.Redis/ConnectionMultiplexer.cs +++ b/src/StackExchange.Redis/ConnectionMultiplexer.cs @@ -2160,7 +2160,7 @@ internal Exception GetException(WriteResult result, Message message, ServerEndPo case WriteResult.NoConnectionAvailable: return ExceptionFactory.NoConnectionAvailable(IncludeDetailInExceptions, IncludePerformanceCountersInExceptions, message.Command, message, server, GetServerSnapshot()); case WriteResult.TimeoutBeforeWrite: - return ExceptionFactory.Timeout(this, "The timeout was reached before the message could be written to the output buffer, and it was not sent", message, server, result, caller: caller); + return ExceptionFactory.Timeout(this, "The timeout was reached before the message could be written to the output buffer, and it was not sent", message, server, result, origin: caller); case WriteResult.WriteFailure: default: return ExceptionFactory.ConnectionFailure(IncludeDetailInExceptions, ConnectionFailureType.ProtocolFailure, "An unknown error occurred when writing the message", server);