Skip to content

Commit db195fc

Browse files
committed
increase retry attempt to 6
1 parent b63b26f commit db195fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

client/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function Client(url, retryAttempts) {
2020
/** @type {Number} */
2121
this._reopenTimeout = null;
2222
/** @type {Number} */
23-
this._retryAttempts = retryAttempts || 3;
23+
this._retryAttempts = retryAttempts || 6;
2424
/** @type {Number} */
2525
this._counter = 0;
2626
/** @type {Function} */

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "socket-redis",
3-
"version": "3.3.3",
3+
"version": "3.3.4",
44
"description": "Redis to SockJS relay",
55
"main": "socket-redis.js",
66
"bin": {

0 commit comments

Comments
 (0)