vnpy_okx 2026.2.1__tar.gz → 2026.2.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vnpy_okx
3
- Version: 2026.2.1
3
+ Version: 2026.2.5
4
4
  Summary: OKX trading gateway for VeighNa.
5
5
  Project-URL: Homepage, https://www.github.com/veighna-global
6
6
  Project-URL: Source, https://www.github.com/veighna-global
@@ -33,7 +33,7 @@ Description-Content-Type: text/markdown
33
33
  </p>
34
34
 
35
35
  <p align="center">
36
- <img src ="https://img.shields.io/badge/version-uv-blueviolet.svg"/>
36
+ <img src ="https://img.shields.io/badge/version-2026.02.05-blueviolet.svg"/>
37
37
  <img src ="https://img.shields.io/badge/platform-windows|linux|macos-yellow.svg"/>
38
38
  <img src ="https://img.shields.io/badge/python-3.10|3.11|3.12|3.13-blue.svg" />
39
39
  <img src ="https://img.shields.io/github/license/veighna-global/vnpy_okx.svg?color=orange"/>
@@ -5,7 +5,7 @@
5
5
  </p>
6
6
 
7
7
  <p align="center">
8
- <img src ="https://img.shields.io/badge/version-uv-blueviolet.svg"/>
8
+ <img src ="https://img.shields.io/badge/version-2026.02.05-blueviolet.svg"/>
9
9
  <img src ="https://img.shields.io/badge/platform-windows|linux|macos-yellow.svg"/>
10
10
  <img src ="https://img.shields.io/badge/python-3.10|3.11|3.12|3.13-blue.svg" />
11
11
  <img src ="https://img.shields.io/github/license/veighna-global/vnpy_okx.svg?color=orange"/>
@@ -23,7 +23,7 @@
23
23
  from .okx_gateway import OkxGateway
24
24
 
25
25
 
26
- __version__ = "2026.02.01"
26
+ __version__ = "2026.02.05"
27
27
 
28
28
 
29
29
  __all__ = ["OkxGateway"]
@@ -1079,12 +1079,12 @@ class WebsocketApi(WebsocketClient):
1079
1079
  self.connected = True
1080
1080
  self.gateway.write_log(f"{self.name} connected")
1081
1081
 
1082
- def on_disconnected(self) -> None:
1082
+ def on_disconnected(self, status_code: int, msg: str) -> None:
1083
1083
  """
1084
1084
  Callback when server is disconnected.
1085
1085
  """
1086
1086
  self.connected = False
1087
- self.gateway.write_log(f"{self.name} disconnected")
1087
+ self.gateway.write_log(f"{self.name} disconnected, code: {status_code}, msg: {msg}")
1088
1088
 
1089
1089
  def on_message(self, message: str) -> None:
1090
1090
  """
File without changes
File without changes
File without changes