We don't want to try and do any enoding conversions (or indeed any
newline conversions) on uploaded trace files.
filename = "/tmp/#{rand}"
# ...and save the uploaded file to that location
filename = "/tmp/#{rand}"
# ...and save the uploaded file to that location
- File.open(filename, "w") { |f| f.write(file.read) }
+ File.open(filename, "wb") { |f| f.write(file.read) }
# Create the trace object, falsely marked as already
# inserted to stop the import daemon trying to load it
# Create the trace object, falsely marked as already
# inserted to stop the import daemon trying to load it