Skip to content
This repository was archived by the owner on Feb 3, 2026. It is now read-only.

Commit 786fb96

Browse files
committed
[OHLCVUpdater] Fix missing await
1 parent e4154ba commit 786fb96

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [2.5.8] - 2026-01-29
8+
### Fixed
9+
[OHLCVUpdater] Missing await inside _remove_unsupported_pairs
10+
711
## [2.5.7] - 2026-01-29
812
### Updated
913
[MarketsUpdater] Reduce markets update from every 2.5 to every 10min

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# OctoBot-Trading [2.5.7](https://github.com/Drakkar-Software/OctoBot-Trading/blob/master/CHANGELOG.md)
1+
# OctoBot-Trading [2.5.8](https://github.com/Drakkar-Software/OctoBot-Trading/blob/master/CHANGELOG.md)
22
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/903b6b22bceb4661b608a86fea655f69)](https://app.codacy.com/gh/Drakkar-Software/OctoBot-Trading?utm_source=github.com&utm_medium=referral&utm_content=Drakkar-Software/OctoBot-Trading&utm_campaign=Badge_Grade_Dashboard)
33
[![PyPI](https://img.shields.io/pypi/v/OctoBot-Trading.svg)](https://pypi.python.org/pypi/OctoBot-Trading/)
44
[![Coverage Status](https://coveralls.io/repos/github/Drakkar-Software/OctoBot-Trading/badge.svg?branch=master)](https://coveralls.io/github/Drakkar-Software/OctoBot-Trading?branch=master)

octobot_trading/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
# License along with this library.
1616

1717
PROJECT_NAME = "OctoBot-Trading"
18-
VERSION = "2.5.7" # major.minor.revision
18+
VERSION = "2.5.8" # major.minor.revision

octobot_trading/exchange_data/ohlcv/channel/ohlcv_updater.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ async def _remove_unsupported_pairs(self, pair: str):
390390
# For now only remove the pair from the traded pairs if it's an option exchange
391391
if self.channel.exchange_manager.is_option:
392392
self.logger.warning(f"Removing {pair} from traded pairs...")
393-
self.channel.exchange_manager.exchange_config.remove_traded_symbols([pair])
393+
await self.channel.exchange_manager.exchange_config.remove_traded_symbols([pair])
394394

395395
async def resume(self) -> None:
396396
await super().resume()

0 commit comments

Comments
 (0)