From 90d9045c3dd93c40f20552a7604a46a1a1fbcafb Mon Sep 17 00:00:00 2001 From: Tim-Oliver Husser Date: Mon, 25 Dec 2023 16:43:51 +0100 Subject: [PATCH 1/2] fixed bug --- pyobs/robotic/scripts/callmodule.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyobs/robotic/scripts/callmodule.py b/pyobs/robotic/scripts/callmodule.py index 54884be8..b9f4ee7b 100644 --- a/pyobs/robotic/scripts/callmodule.py +++ b/pyobs/robotic/scripts/callmodule.py @@ -44,7 +44,7 @@ async def run( task_schedule: Optional[TaskSchedule] = None, task_archive: Optional[TaskArchive] = None, ) -> None: - proxy = self.comm.proxy(self.module) + proxy = await self.comm.proxy(self.module) await proxy.execute(self.method, *self.params) From 8fd1d9a37a4b6010e10ccd3374f44520ae0e71d1 Mon Sep 17 00:00:00 2001 From: Tim-Oliver Husser Date: Mon, 25 Dec 2023 16:43:57 +0100 Subject: [PATCH 2/2] v1.11.2 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 01aa2abd..5ed90d72 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "pyobs-core" packages = [{ include = "pyobs" }] -version = "1.11.1" +version = "1.11.2" description = "robotic telescope software" authors = ["Tim-Oliver Husser "] license = "MIT"