Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 302811a

Browse files
committed
Update RedisNativeClient_Utils.cs
Dublicate throw. throw throw new RedisResponseException() in result.
1 parent 16cdeda commit 302811a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ServiceStack.Redis/RedisNativeClient_Utils.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ private RedisResponseException CreateResponseError(string error)
302302

303303
var throwEx = new RedisResponseException(error);
304304
log.Error(error);
305-
throw throwEx;
305+
return throwEx;
306306
}
307307

308308
private RedisRetryableException CreateNoMoreDataError()

0 commit comments

Comments
 (0)