Skip to content

Commit

Permalink
Also display last received command for connection
Browse files Browse the repository at this point in the history
  • Loading branch information
shortcutme committed Oct 12, 2017
1 parent ef2f1d5 commit 3c8867b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/Stats/StatsPlugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def actionStats(self):
("%.3f", connection.cpu_time),
("%.0fkB", connection.bytes_sent / 1024),
("%.0fkB", connection.bytes_recv / 1024),
("%s", connection.last_cmd),
("<span title='Recv: %s'>%s</span>", (connection.last_cmd_recv, connection.last_cmd_sent)),
("%s", connection.waiting_requests.keys()),
("%s r%s", (connection.handshake.get("version"), connection.handshake.get("rev", "?"))),
("%s", connection.sites)
Expand Down

0 comments on commit 3c8867b

Please sign in to comment.