diff --git a/glance/common/client.py b/glance/common/client.py index 3a8a52726c..a8eda29997 100644 --- a/glance/common/client.py +++ b/glance/common/client.py @@ -25,6 +25,7 @@ import httplib import logging import os +import select import urllib import urlparse @@ -129,10 +130,23 @@ def __len__(self): return self.len while self.sending: - sent = sendfile.sendfile(self.connection.sock.fileno(), - self.body.fileno(), - self.offset, - CHUNKSIZE) + try: + sent = sendfile.sendfile(self.connection.sock.fileno(), + self.body.fileno(), + self.offset, + CHUNKSIZE) + except OSError as e: + # suprisingly, sendfile may fail transiently instead of + # blocking, in which case we select on the socket in order + # to wait on its return to a writeable state before resuming + # the send loop + if e.errno in (errno.EAGAIN, errno.EBUSY): + wlist = [self.connection.sock.fileno()] + rfds, wfds, efds = select.select([], wlist, []) + if wfds: + continue + raise + self.sending = (sent != 0) self.offset += sent yield OfLength(sent)