Public » MiniRedis Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in tip

disconnect client on shutdown

Changeset dfd71e803656

Parent 584e179782b1

by Profile picture of Benjamin PollackBenjamin Pollack

Changes to one file · Browse files at dfd71e803656 Showing diff from parent 584e179782b1 Diff from another changeset...

Change 1 of 1 Show Entire File miniredis.py Stacked
 
267
268
269
270
 
271
272
273
 
267
268
269
 
270
271
272
273
@@ -267,7 +267,7 @@
  def handle_shutdown(self, client):   self.log(client, 'SHUTDOWN')   self.halt = True - return True + return self.handle_quit(client)    def main(args):   host, port, log_file, db_file = '127.0.0.1', 6379, None, None