From 1f1d78fde2ed81603e782e489d2d55f8d2552895 Mon Sep 17 00:00:00 2001
From: David Trattnig <david.trattnig@o94.at>
Date: Thu, 28 Jan 2021 12:03:49 +0100
Subject: [PATCH] Generalized naming. #72

---
 src/engine.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/engine.py b/src/engine.py
index bbd63773..d0829c7b 100644
--- a/src/engine.py
+++ b/src/engine.py
@@ -63,7 +63,7 @@ class Engine():
         Engine.instance = self         
         self.logger = logging.getLogger("AuraEngine")            
         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.channel_router = ChannelRouter(self.config, self.logger)
@@ -145,7 +145,7 @@ class Engine():
         """
         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
-        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
         Engine initialization.
 
-- 
GitLab