Skip to content

Commit

Permalink
Merge pull request #198 from Teingi/2.1.0_dev
Browse files Browse the repository at this point in the history
fix telemetry
  • Loading branch information
Teingi authored May 10, 2024
2 parents 2948398 + b7fe9e5 commit 825a921
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ def check_list(self, opts):
self._call_stdio('error', 'No such custum config')
return False
else:
self.set_context('check_list', 'check_list', config)
self.set_offline_context('check_list', 'check_list')
handler = CheckListHandler(self.context)
handler.handle()

Expand All @@ -335,7 +335,7 @@ def rca_list(self, opts):
self._call_stdio('error', 'No such custum config')
return False
else:
self.set_context('rca_list', 'rca_list', config)
self.set_offline_context('rca_list', 'rca_list')
handler = RcaScenesListHandler(context=self.context)
handler.handle()

Expand All @@ -356,6 +356,6 @@ def config(self, opt):
self._call_stdio('error', 'No such custum config')
return False
else:
self.set_context('config', 'config', config)
self.set_offline_context('config', 'config')
config_helper = ConfigHelper(context=self.context)
config_helper.build_configuration()

0 comments on commit 825a921

Please sign in to comment.