Skip to content
Snippets Groups Projects
Commit 891797a3 authored by kimth's avatar kimth
Browse files

Submission of files through requests.POST depletes the file pointer. Need to rewind for replay

parent 2f63a9b4
No related branches found
No related tags found
No related merge requests found
......@@ -83,6 +83,9 @@ class XQueueInterface(object):
if error and (msg == 'login_required'): # Log in, then try again
self._login()
if files_to_upload is not None:
for f in files_to_upload: # Need to rewind file pointers
f.seek(0)
(error, msg) = self._send_to_queue(header, body, files_to_upload)
return (error, msg)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment