Skip to content

Commit

Permalink
[ENH] disable_stove_connector feature flag
Browse files Browse the repository at this point in the history
  • Loading branch information
dragarthPl committed May 21, 2024
1 parent 13089ff commit 4053437
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion config/configuration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ default_minimum_temperature: 15

features:
file_logging: false
demo_mode: false
demo_mode: false
disable_stove_connector: true
1 change: 1 addition & 0 deletions src/main/core/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
class Features:
file_logging: bool = features_configuration.get('file_logging', False)
demo_mode: bool = features_configuration.get('demo_mode', False)
disable_stove_connector: bool = features_configuration.get('disable_stove_connector', False)


class Configuration(BaseSettings):
Expand Down

0 comments on commit 4053437

Please sign in to comment.