From b643847da55e2fef310ee87e742f26448786585f Mon Sep 17 00:00:00 2001 From: whitequark Date: Tue, 28 Mar 2017 14:22:04 +0000 Subject: [PATCH] Fix a misleading message for non-clean kernel termination. --- artiq/coredevice/comm_kernel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/coredevice/comm_kernel.py b/artiq/coredevice/comm_kernel.py index 5bcd206bd..057647547 100644 --- a/artiq/coredevice/comm_kernel.py +++ b/artiq/coredevice/comm_kernel.py @@ -273,7 +273,7 @@ class CommKernel: finished_cleanly = self._read_bool() if not finished_cleanly: - logger.warning("Interrupted a running kernel") + logger.warning("Previous kernel did not cleanly finish") def switch_clock(self, external): self._write_header(_H2DMsgType.SWITCH_CLOCK)