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

pass i/o intervals to run and run_as_update methods

parent 0be017aa
No related branches found
No related tags found
2 merge requests!146Release CMO metadata to production,!134pass i/o intervals to run and run_as_update methods
...@@ -190,6 +190,8 @@ class Controller(object): ...@@ -190,6 +190,8 @@ class Controller(object):
input_channels=options.inchannels, input_channels=options.inchannels,
input_timeseries=input_timeseries, input_timeseries=input_timeseries,
output_channels=options.outchannels, output_channels=options.outchannels,
input_interval=options.input_interval or options.interval,
output_interval=options.output_interval or options.interval,
no_trim=options.no_trim, no_trim=options.no_trim,
rename_input_channel=options.rename_input_channel, rename_input_channel=options.rename_input_channel,
rename_output_channel=options.rename_output_channel, rename_output_channel=options.rename_output_channel,
...@@ -222,6 +224,8 @@ class Controller(object): ...@@ -222,6 +224,8 @@ class Controller(object):
endtime=options.endtime, endtime=options.endtime,
input_channels=options.inchannels, input_channels=options.inchannels,
output_channels=options.outchannels, output_channels=options.outchannels,
input_interval=options.input_interval or options.interval,
output_interval=options.output_interval or options.interval,
no_trim=options.no_trim, no_trim=options.no_trim,
realtime=options.realtime, realtime=options.realtime,
rename_input_channel=options.rename_input_channel, rename_input_channel=options.rename_input_channel,
......
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