Skip to content
Snippets Groups Projects
Commit 1f1d78fd authored by David Trattnig's avatar David Trattnig
Browse files

Generalized naming. #72

parent 9259da36
No related branches found
No related tags found
No related merge requests found
...@@ -63,7 +63,7 @@ class Engine(): ...@@ -63,7 +63,7 @@ class Engine():
Engine.instance = self Engine.instance = self
self.logger = logging.getLogger("AuraEngine") self.logger = logging.getLogger("AuraEngine")
self.config = AuraConfig.config() self.config = AuraConfig.config()
Engine.engine_time_offset = float(self.config.get("lqs_delay_offset")) Engine.engine_time_offset = float(self.config.get("engine_latency_offset"))
self.plugins = dict() self.plugins = dict()
self.channel_router = ChannelRouter(self.config, self.logger) self.channel_router = ChannelRouter(self.config, self.logger)
...@@ -145,7 +145,7 @@ class Engine(): ...@@ -145,7 +145,7 @@ class Engine():
""" """
Liquidsoap is slow in executing commands, therefore it's needed to schedule Liquidsoap is slow in executing commands, therefore it's needed to schedule
actions by (n) seconds in advance, as defined in the configuration file by actions by (n) seconds in advance, as defined in the configuration file by
the property `lqs_delay_offset`. it's important to note that this method the property `engine_latency_offset`. it's important to note that this method
requires the class variable `EngineUtil.engine_time_offset` to be set on requires the class variable `EngineUtil.engine_time_offset` to be set on
Engine initialization. Engine initialization.
......
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