Skip to content
Snippets Groups Projects
Commit 3b6ea560 authored by Cain, Payton David's avatar Cain, Payton David
Browse files

Set realtime to false with invalid value

parent f7d9d00a
No related branches found
No related tags found
2 merge requests!146Release CMO metadata to production,!52Update legacy
...@@ -240,6 +240,9 @@ class Controller(object): ...@@ -240,6 +240,9 @@ class Controller(object):
rename_input_channel: list of input channel renames rename_input_channel: list of input channel renames
rename_output_channel: list of output channel renames rename_output_channel: list of output channel renames
""" """
# ensure realtime is a valid value:
if realtime <= 0:
realtime = False
algorithm = self._algorithm algorithm = self._algorithm
input_channels = input_channels or algorithm.get_input_channels() input_channels = input_channels or algorithm.get_input_channels()
output_channels = output_channels or algorithm.get_output_channels() output_channels = output_channels or algorithm.get_output_channels()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment