From e1f9feae8b5b219bc39944f055c15d6b0ee27d3e Mon Sep 17 00:00:00 2001 From: David Nadlinger Date: Sun, 19 Jun 2022 18:08:25 +0100 Subject: [PATCH] applets.simple: Actually forward dataset_prefixes when using IPC Turns out I had inadvertently only tested 2d6fc154d using the socket interface. --- artiq/applets/simple.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/artiq/applets/simple.py b/artiq/applets/simple.py index ea507c821..196b8f1e3 100644 --- a/artiq/applets/simple.py +++ b/artiq/applets/simple.py @@ -216,7 +216,8 @@ class SimpleApplet: self.loop.run_until_complete(self.subscriber.connect( self.args.server, self.args.port)) else: - self.ipc.subscribe(self.datasets, self.sub_init, self.sub_mod) + self.ipc.subscribe(self.datasets, self.sub_init, self.sub_mod, + dataset_prefixes=self.dataset_prefixes) def unsubscribe(self): if self.embed is None: