From mboxrd@z Thu Jan 1 00:00:00 1970 From: dirk.wagner@ipfire.org To: ddns@lists.ipfire.org Subject: [PATCH] ddns: fixed compile error Date: Thu, 11 May 2017 12:23:22 +0200 Message-ID: <99179154.3066.1494498203022@office.mailbox.org> In-Reply-To: <1494497813-2694-1-git-send-email-dirk.wagner@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1831614865140805673==" List-Id: --===============1831614865140805673== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sorry for the empty Subject, parts of the mail are lost. The patch is for the status-defeated branch > ---------- Urspr=C3=BCngliche Nachricht ---------- > Von: Dirk Wagner > An: ddns(a)lists.ipfire.org > Cc: Dirk Wagner > Datum: 11. Mai 2017 um 12:16 > Betreff:=20 >=20 > One issue remains: > The constant holdoff_rate_limited_minutes should be overwritable for each p= rovider. For DomainOffensive 30 min ist too short. >=20 > From 312ca7b32852c8b950868423d1919bc2f25031aa Mon Sep 17 00:00:00 2001 > From: Dirk Wagner > Date: Thu, 11 May 2017 09:04:49 +0200 > Subject: [PATCH] ddns: fixed compile errors >=20 > Signed-off-by: Dirk Wagner > --- > src/ddns/providers.py | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) >=20 > diff --git a/src/ddns/providers.py b/src/ddns/providers.py > index cb6dd2d..5386f35 100644 > --- a/src/ddns/providers.py > +++ b/src/ddns/providers.py > @@ -69,7 +69,7 @@ class DDNSProvider(object): > =20 > # holdoff time for rate-limited updates - Number of minutes no update > # is tried after the last one has been sent. > - holdoff_rate-limited_minutes =3D 30 > + holdoff_rate_limited_minutes =3D 30 > =20 > # True if the provider is able to remove records, too. > # Required to remove AAAA records if IPv6 is absent again. > @@ -248,10 +248,10 @@ class DDNSProvider(object): > last_update =3D self.db.last_update(self.hostname, status=3Dlast_status) > =20 > # Calculate holdoff end, based on the last status (failure or rate-limit= ed) > - if last_status =3D=3D "failure" > + if last_status =3D=3D "failure": > holdoff_end =3D last_update + datetime.timedelta(days=3Dself.holdoff_fa= ilure_days) > else: > - holdoff_end =3D last_update + datetime.timedelta(minutes=3Dself.holdoff= _rate-limited_minutes) > + holdoff_end =3D last_update + datetime.timedelta(minutes=3Dself.holdoff= _rate_limited_minutes) > =20 > now =3D datetime.datetime.utcnow() > if now < holdoff_end: > --=20 > 2.1.4 > --===============1831614865140805673==--