diff options
author | Rob Austein <sra@hactrn.net> | 2009-04-30 22:29:14 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2009-04-30 22:29:14 +0000 |
commit | 9bce199b512adb2fc2140c63767e0c9af75fd2c5 (patch) | |
tree | ddbb34c78344e3357d17a14e2373fbbc1d4a7552 | |
parent | c57bbc1e42af6189c3ec823a17ce2c39c2f45baa (diff) |
Track changes in timer implementation
svn path=/rtr-origin/rtr-origin.py; revision=2386
-rw-r--r-- | rtr-origin/rtr-origin.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rtr-origin/rtr-origin.py b/rtr-origin/rtr-origin.py index 61c161de..dd743f9c 100644 --- a/rtr-origin/rtr-origin.py +++ b/rtr-origin/rtr-origin.py @@ -828,11 +828,12 @@ class client_timer(rpki.async.timer): """Timer class for client mode, to handle the periodic serial queries.""" def __init__(self, client, period): + rpki.async.timer.__init__(self) self.client = client self.period = period self.set(period) - def expired(self): + def handler(self): if self.client.current_serial is None: self.client.push_pdu(reset_query()) else: |