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

refact(engine_core.version): returns both versions

Closes #110
parent 08d83ae3
No related branches found
No related tags found
No related merge requests found
Pipeline #2205 passed
......@@ -194,14 +194,11 @@ class Engine:
with open(os.path.join("", "VERSION")) as version_file:
ctrl_version = version_file.read().strip()
# FIXME Should be in one call
core_version = self.connector.send_lqc_command("engine", "version")
liq_version = self.connector.send_lqc_command("version", "")
liq_version = liq_version.split(" ")[1]
versions = self.connector.send_lqc_command("engine", "version")
versions = DotDict(json.loads(versions))
self.config.set("version_control", ctrl_version)
self.config.set("version_core", core_version)
self.config.set("version_liquidsoap", liq_version)
self.config.set("version_core", versions.core)
self.config.set("version_liquidsoap", versions.liquidsoap)
def uptime(self):
"""
......
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