initial candle request limit, better error reporting, split up _handle_producer_connection

This commit is contained in:
Timothy Pogue
2022-09-02 15:05:16 -06:00
parent 5b0b802f31
commit cf917ad2f5
6 changed files with 119 additions and 50 deletions

View File

@@ -505,7 +505,13 @@ CONF_SCHEMA = {
'reply_timeout': {'type': 'integer'},
'sleep_time': {'type': 'integer'},
'ping_timeout': {'type': 'integer'},
'remove_signals_analyzed_df': {'type': 'boolean', 'default': False}
'remove_signals_analyzed_df': {'type': 'boolean', 'default': False},
'initial_candle_limit': {
'type': 'integer',
'minimum': 100,
'maximum': 1500,
'default': 500
}
},
'required': ['producers']
},