Skip to content

Commit

Permalink
scheduling on close request must happen on conn, not on client itself
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamie Turner committed Jun 15, 2010
1 parent 2f88b70 commit 43243f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion diesel/client.py
Expand Up @@ -118,7 +118,7 @@ def close(self):
def request_close(self):
self.jobs.append(None)
if self.waiting:
self.schedule()
self.conn.schedule()

@property
def is_closed(self):
Expand Down

0 comments on commit 43243f6

Please sign in to comment.