Skip to content

Commit

Permalink
fix old reference to c variable (monkey)
Browse files Browse the repository at this point in the history
Former-commit-id: 0b9b6413c70d4ba71bbabcd0b22fb004d804958f
  • Loading branch information
christianEQ committed Mar 17, 2021
1 parent 1fc5fdd commit 8858ffd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion monkey/monkey.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def init_lpush():
for i in range(numclients):
clients.append(Client('127.0.0.1', 6379))
for i in range (10):
handle_lpush_response(c)
handle_lpush_response(clients[-1])
#handle_set_response(clients[-1], None)

scan_client = Client('127.0.0.1', 6379)
Expand Down

0 comments on commit 8858ffd

Please sign in to comment.