Skip to content
Snippets Groups Projects
Commit 69b3fd48 authored by Erik Johnston's avatar Erik Johnston
Browse files

Fix incorrect type when using InvalidateCacheCommand

parent fcc803b2
No related branches found
No related tags found
No related merge requests found
......@@ -175,7 +175,7 @@ class ReplicationClientHandler(object):
def send_invalidate_cache(self, cache_func, keys):
"""Poke the master to invalidate a cache.
"""
cmd = InvalidateCacheCommand(cache_func, keys)
cmd = InvalidateCacheCommand(cache_func.__name__, keys)
self.send_command(cmd)
def await_sync(self, data):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment