##// END OF EJS Templates
wireprotov2server: use pycompat.strkwargs when calling cachekeyfn...
Gregory Szorc -
r41421:56fcbac6 default
parent child Browse files
Show More
@@ -390,7 +390,8 b' def dispatch(repo, proto, command, redir'
390 return
390 return
391
391
392 with cacher:
392 with cacher:
393 cachekey = entry.cachekeyfn(repo, proto, cacher, **args)
393 cachekey = entry.cachekeyfn(repo, proto, cacher,
394 **pycompat.strkwargs(args))
394
395
395 # No cache key or the cacher doesn't like it. Do default handling.
396 # No cache key or the cacher doesn't like it. Do default handling.
396 if cachekey is None or not cacher.setcachekey(cachekey):
397 if cachekey is None or not cacher.setcachekey(cachekey):
General Comments 0
You need to be logged in to leave comments. Login now