Skip to content

Commit

Permalink
3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
51bitquant committed Mar 2, 2024
1 parent 2e0a387 commit ccc5c86
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,5 @@ howtrader/log/*
main_window.spec
*.json
*.db
examples/howtrader/*
examples/howtrader/*
*.zip
2 changes: 1 addition & 1 deletion howtrader/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.4.0"
__version__ = "3.4.1"
3 changes: 1 addition & 2 deletions howtrader/api/rest/rest_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,9 +187,8 @@ def add_request(
extra,
)

coro: coroutine = self._process_request(request)
if self.loop:
run_coroutine_threadsafe(coro, self.loop)
run_coroutine_threadsafe(self._process_request(request), self.loop)
return request

def request(
Expand Down

0 comments on commit ccc5c86

Please sign in to comment.