adjust cache maxage values

This commit is contained in:
Mike Fährmann
2019-03-14 22:21:49 +01:00
parent f612284d24
commit a2af2d2965
13 changed files with 19 additions and 19 deletions

View File

@@ -27,7 +27,7 @@ class TsuminoBase():
self.session.cookies.setdefault(
"ASP.NET_SessionId", "x1drgggilez4cpkttneukrc5")
@cache(maxage=14*24*60*60, keyarg=1)
@cache(maxage=14*24*3600, keyarg=1)
def _login_impl(self, username, password):
self.log.info("Logging in as %s", username)
url = "{}/Account/Login".format(self.root)