summaryrefslogtreecommitdiff
path: root/paramiko/channel.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2022-04-25 10:56:57 -0400
committerJeff Forcier <jeff@bitprophet.org>2022-04-25 10:56:57 -0400
commitf2b4be883adad4cb80a39312cf45a6d3248432a6 (patch)
tree3e75d83a6009066a911faf69eca465758949a837 /paramiko/channel.py
parentf325261699a1989d7aef1a62e3b3dab96f25d237 (diff)
parent5540514928474956c25936ab48f7fa0b59755bb1 (diff)
downloadparamiko-f2b4be883adad4cb80a39312cf45a6d3248432a6.tar.gz
Merge branch '2.10'
Diffstat (limited to 'paramiko/channel.py')
-rw-r--r--paramiko/channel.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/paramiko/channel.py b/paramiko/channel.py
index 592ddcd2..fb703c31 100644
--- a/paramiko/channel.py
+++ b/paramiko/channel.py
@@ -1066,7 +1066,7 @@ class Channel(ClosingContextManager):
if self.ultra_debug:
self._log(DEBUG, "window up {}".format(nbytes))
self.out_window_size += nbytes
- self.out_buffer_cv.notifyAll()
+ self.out_buffer_cv.notify_all()
finally:
self.lock.release()
@@ -1230,7 +1230,7 @@ class Channel(ClosingContextManager):
self.closed = True
self.in_buffer.close()
self.in_stderr_buffer.close()
- self.out_buffer_cv.notifyAll()
+ self.out_buffer_cv.notify_all()
# Notify any waiters that we are closed
self.event.set()
self.status_event.set()