Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do not strip non-ascii chars from outputFile #150

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions worker.py
Original file line number Diff line number Diff line change
@@ -137,15 +137,13 @@ def notifyServer(self, job):
if job.notifyURL:
outputFileName = job.outputFile.split(
"/")[-1] # get filename from path
fh = open(job.outputFile, 'rb')
files = {'file': unicode(fh.read(), errors='ignore')}
files = {'file': open(job.outputFile, 'rb')}
hdrs = {'Filename': outputFileName}
self.log.debug("Sending request to %s" % job.notifyURL)
response = requests.post(
job.notifyURL, files=files, headers=hdrs, verify=False)
self.log.info("Response from callback to %s:%s" %
(job.notifyURL, response.content))
fh.close()
except Exception as e:
self.log.debug("Error in notifyServer: %s" % str(e))