Skip to content

Commit 996e639

Browse files
Guillaume De Saint MartinGuillaumeDSM
authored andcommitted
[StrategyOptimizer] disable storage
1 parent a4d73a2 commit 996e639

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

octobot/community/feeds/community_mqtt_feed.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ async def send(self, message, channel_type, identifier, **kwargs):
154154
self.logger.warning(f"Can't send {channel_type.name}, invalid feed authentication.")
155155
return
156156
topic = self._build_topic(channel_type, identifier)
157-
self.logger.debug(f"Sending message on topic: {topic}, message: {message}")
157+
self.logger.info(f"Sending message on topic: {topic}, message: {message}")
158158
self._mqtt_client.publish(
159159
self._build_topic(channel_type, identifier),
160160
self._build_message(channel_type, message),

octobot/strategy_optimizer/strategy_test_suite.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ async def _run_backtesting_with_current_config(self, data_file_to_use):
119119
[data_file_to_use],
120120
"",
121121
enforce_total_databases_max_size_after_run=False,
122+
enable_storage=False,
122123
)
123124
await octobot_backtesting_api.initialize_and_run_independent_backtesting(independent_backtesting, log_errors=False)
124125
await octobot_backtesting_api.join_independent_backtesting(independent_backtesting)

0 commit comments

Comments
 (0)