Skip to content

Commit

Permalink
Remove priority flag for ping done via flush
Browse files Browse the repository at this point in the history
  • Loading branch information
wallyqs committed Aug 23, 2017
1 parent 629bef0 commit cd0d0b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nats/io/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ def _send_ping(self, future=None):
if self._pings_outstanding > self.options["max_outstanding_pings"]:
yield self._unbind()
else:
yield self.send_command(PING_PROTO, priority=True)
yield self.send_command(PING_PROTO)
yield self._flush_pending()
if future is None:
future = tornado.concurrent.Future()
Expand Down

0 comments on commit cd0d0b5

Please sign in to comment.