From 0e92cfe053e478baddd2d58c7159f78191a0fca3 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sat, 11 Jul 2015 22:26:37 +0200 Subject: [PATCH] artiq_run: remove support for stale watchdog API --- artiq/frontend/artiq_run.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/artiq/frontend/artiq_run.py b/artiq/frontend/artiq_run.py index 4aa66a91a..38fc7fe96 100755 --- a/artiq/frontend/artiq_run.py +++ b/artiq/frontend/artiq_run.py @@ -36,17 +36,6 @@ class SimpleParamLogger: logger.info("Parameter change: {} = {}".format(name, value)) -class DummyWatchdog: - def __init__(self, t): - pass - - def __enter__(self): - pass - - def __exit__(self, type, value, traceback): - pass - - class DummyScheduler: def __init__(self, expid): self.next_rid = 0 @@ -64,8 +53,6 @@ class DummyScheduler: def delete(self, rid): logger.info("Deleting RID %s", rid) - watchdog = DummyWatchdog - def get_argparser(with_file=True): parser = argparse.ArgumentParser(