Skip to content

Commit 9bd8365

Browse files
author
Peter Justin
authored
Merge pull request #187 from sonologic/master
SASLMemcachedCache: properly pass default_timeout to super constructor
2 parents 5eef673 + 46c2419 commit 9bd8365

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flask_caching/backends/memcache.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def __init__(
233233
password=None,
234234
**kwargs
235235
):
236-
super(SASLMemcachedCache, self).__init__(default_timeout)
236+
super(SASLMemcachedCache, self).__init__(default_timeout=default_timeout)
237237

238238
if servers is None:
239239
servers = ["127.0.0.1:11211"]

0 commit comments

Comments
 (0)