Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2a8da2c

Browse files
author
Travis CI
committed
fix(woo): keepAlive set to 9000 to fix ping-pong keepAlive error (#22790)
[ci skip]
1 parent dccff53 commit 2a8da2c

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

cs/ccxt/exchanges/pro/woo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public override object describe()
5252
} },
5353
{ "streaming", new Dictionary<string, object>() {
5454
{ "ping", this.ping },
55-
{ "keepAlive", 10000 },
55+
{ "keepAlive", 9000 },
5656
} },
5757
{ "exceptions", new Dictionary<string, object>() {
5858
{ "ws", new Dictionary<string, object>() {

dist/ccxt.browser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291034,7 +291034,7 @@ class woo extends _woo_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z {
291034291034
},
291035291035
'streaming': {
291036291036
'ping': this.ping,
291037-
'keepAlive': 10000,
291037+
'keepAlive': 9000,
291038291038
},
291039291039
'exceptions': {
291040291040
'ws': {

dist/ccxt.browser.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cjs/src/pro/woo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class woo extends woo$1 {
5353
},
5454
'streaming': {
5555
'ping': this.ping,
56-
'keepAlive': 10000,
56+
'keepAlive': 9000,
5757
},
5858
'exceptions': {
5959
'ws': {

js/src/pro/woo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export default class woo extends wooRest {
5656
},
5757
'streaming': {
5858
'ping': this.ping,
59-
'keepAlive': 10000,
59+
'keepAlive': 9000,
6060
},
6161
'exceptions': {
6262
'ws': {

php/pro/woo.php

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

python/ccxt/pro/woo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def describe(self):
6060
},
6161
'streaming': {
6262
'ping': self.ping,
63-
'keepAlive': 10000,
63+
'keepAlive': 9000,
6464
},
6565
'exceptions': {
6666
'ws': {

0 commit comments

Comments
 (0)