mirror of https://github.com/m-labs/artiq.git
Fix a misleading message for non-clean kernel termination.
This commit is contained in:
parent
7eb368fd5d
commit
b643847da5
|
@ -273,7 +273,7 @@ class CommKernel:
|
||||||
|
|
||||||
finished_cleanly = self._read_bool()
|
finished_cleanly = self._read_bool()
|
||||||
if not finished_cleanly:
|
if not finished_cleanly:
|
||||||
logger.warning("Interrupted a running kernel")
|
logger.warning("Previous kernel did not cleanly finish")
|
||||||
|
|
||||||
def switch_clock(self, external):
|
def switch_clock(self, external):
|
||||||
self._write_header(_H2DMsgType.SWITCH_CLOCK)
|
self._write_header(_H2DMsgType.SWITCH_CLOCK)
|
||||||
|
|
Loading…
Reference in New Issue